Skip to content

Commit

Permalink
Fix test on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
Samayel committed Sep 14, 2015
1 parent c58892d commit 4dbc95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Math/NumberTheory/primes.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function test_primes_factorization()
@test factorization(147573952589676412927) ==
Dict{Int,Int}(193707721 => 1, 761838257287 => 1)
Dict{Int64,Int}(193707721 => 1, 761838257287 => 1)
@test factorization((big(2)^31-1)*(big(2)^17-1)) ==
Dict(big(2^31-1) => 1, big(2^17-1) => 1)
fastprimes() && @test factorization((big(2)^31-1)^2) ==
Expand Down

0 comments on commit 4dbc95a

Please sign in to comment.