Skip to content

Commit 0f31e72

Browse files
zeevick10dannywillems
authored andcommitted
Update poseidon_tests.rs
1 parent dd03cdf commit 0f31e72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

poseidon/tests/poseidon_tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ where
4242

4343
// execute test vectors
4444
for test_vector in test_vectors.test_vectors {
45-
// deserialize input & ouptut
45+
// deserialize input & output
4646
let input: Vec<Fp> = test_vector
4747
.input
4848
.into_iter()
@@ -161,7 +161,7 @@ fn test_poseidon_vesta_absorb_point_to_infinity() {
161161
}
162162

163163
#[test]
164-
fn test_poseidon_challenge_multiple_times_without_absorbtion() {
164+
fn test_poseidon_challenge_multiple_times_without_absorption() {
165165
let mut sponge = DefaultFqSponge::<VestaParameters, PlonkSpongeConstantsKimchi>::new(
166166
fq_kimchi::static_params(),
167167
);
@@ -194,7 +194,7 @@ fn test_poseidon_challenge_multiple_times_without_absorbtion() {
194194
}
195195
assert!(
196196
!challenges.contains(&chal),
197-
"Challenges must always be different, even without any absorbtion"
197+
"Challenges must always be different, even without any absorption"
198198
);
199199
challenges.push(chal);
200200
}

0 commit comments

Comments
 (0)