-
Notifications
You must be signed in to change notification settings - Fork 628
refactor(test): remove fixed-size bytearray testutils #8343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(test): remove fixed-size bytearray testutils #8343
Conversation
2263c9e
to
5dd3247
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@orizi reviewed 1 of 1 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @TomerStarkware)
corelib/src/test/byte_array_test.cairo
line 320 at r1 (raw file):
let byte_array: ByteArray = "a"; assert_eq!(@byte_array, @"a", "Same strings are not equal"); assert_ne!(@byte_array, @"b", "Different strings are equal");
all around.
Suggestion:
assert_eq!(byte_array, "a", "Same strings are not equal");
assert_ne!(byte_array, "b", "Different strings are equal");
5dd3247
to
b19fb2c
Compare
6e650cf
to
2f2ffe3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @orizi and @TomerStarkware)
corelib/src/test/byte_array_test.cairo
line 320 at r1 (raw file):
Previously, orizi wrote…
all around.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@orizi reviewed 1 of 1 files at r2, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @TomerStarkware)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TomerStarkware reviewed all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @giladchase)
b19fb2c
to
7ef124d
Compare
2f2ffe3
to
4f30354
Compare
Merge activity
|
It's legacy.