Skip to content

Commit

Permalink
Fixed typo (from careless copy-paste)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAAbbott committed Dec 13, 2024
1 parent 7173aa9 commit 7b2fea9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/flint/fmpz_mod-test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,9 @@ end
@test is_nilpotent(ZZmod720(30))
@test is_nilpotent(ZZmodZZ720(30))
nilp720 = filter((r -> is_nilpotent(ZZmod720(r))), 0:719);
@test length(nilp) == 24 # 720/(2*3*5)
nilp = filter((r -> is_nilpotent(ZZmodZZ720(r))), 0:719);
@test length(nilp) == 24 # 720/(2*3*5)

@test length(nilp720) == 24 # 720/(2*3*5)
nilp720 = filter((r -> is_nilpotent(ZZmodZZ720(r))), 0:719);
@test length(nilp720) == 24 # 720/(2*3*5)
end

@testset "ZZModRingElem.unary_ops" begin
Expand Down

0 comments on commit 7b2fea9

Please sign in to comment.