chore: Improved test assertion style for better readability
I replaced assert!(expected == actual) with assert_eq!(expected, actual) in the test. While both work, assert_eq! is more idiomatic in Rust as it provides better output for debugging by automatically displaying the values when the assertion fails.
p.s. Change improves the readability and overall quality of the tests.
Hello, thanks for this PR! This will not got merged until all of our CI passes. it also might be apt to rebase with main even if there are no conflicts, thanks!
There are also a lot of places where we could use assert_eq so perhaps this PR could handle that too!
Closing because there has been no response from the PR author.
If you're still interested in opening another PR, you are free to do so!