Skip to content
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

chore: update variable names in stdlib tests to be more correct #6419

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions noir_stdlib/src/field/mod.nr
Original file line number Diff line number Diff line change
Expand Up @@ -285,39 +285,39 @@ mod tests {
// docs:start:to_be_bytes_example
fn test_to_be_bytes() {
let field = 2;
let bits: [u8; 8] = field.to_be_bytes();
let bytes: [u8; 8] = field.to_be_bytes();
assert_eq(bits, [0, 0, 0, 0, 0, 0, 0, 2]);
assert_eq(Field::from_be_bytes::<8>(bits), field);
assert_eq(Field::from_be_bytes::<8>(bytes), field);
}
// docs:end:to_be_bytes_example

#[test]
// docs:start:to_le_bytes_example
fn test_to_le_bytes() {
let field = 2;
let bits: [u8; 8] = field.to_le_bytes();
let bytes: [u8; 8] = field.to_le_bytes();
assert_eq(bits, [2, 0, 0, 0, 0, 0, 0, 0]);
assert_eq(Field::from_le_bytes::<8>(bits), field);
assert_eq(Field::from_le_bytes::<8>(bytes), field);
}
// docs:end:to_le_bytes_example

#[test]
// docs:start:to_be_radix_example
fn test_to_be_radix() {
let field = 2;
let bits: [u8; 8] = field.to_be_radix(256);
let bytes: [u8; 8] = field.to_be_radix(256);
assert_eq(bits, [0, 0, 0, 0, 0, 0, 0, 2]);
assert_eq(Field::from_be_bytes::<8>(bits), field);
assert_eq(Field::from_be_bytes::<8>(bytes), field);
}
// docs:end:to_be_radix_example

#[test]
// docs:start:to_le_radix_example
fn test_to_le_radix() {
let field = 2;
let bits: [u8; 8] = field.to_le_radix(256);
let bytes: [u8; 8] = field.to_le_radix(256);
assert_eq(bits, [2, 0, 0, 0, 0, 0, 0, 0]);
assert_eq(Field::from_le_bytes::<8>(bits), field);
assert_eq(Field::from_le_bytes::<8>(bytes), field);
}
// docs:end:to_le_radix_example

Expand Down
Loading