From fe0fd94db490706d14777216926a36e0ca06ffc0 Mon Sep 17 00:00:00 2001 From: nhz2 Date: Fri, 23 Feb 2024 16:29:15 -0500 Subject: [PATCH] fix whitespace --- test/rational.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rational.jl b/test/rational.jl index aa475b5f108b0..548d3b9f0295e 100644 --- a/test/rational.jl +++ b/test/rational.jl @@ -212,7 +212,7 @@ end @test (true//true) / complex(true//true, true//true) === 1//2 - 1//2*im @test (false//true) / complex(true//false, false//true) === 0//1 + 0//1*im @test (true//true) / complex(true//true, true//false) === 0//1 + 0//1*im - + # 1//200 - 1//200*im cannot be represented as Complex{Rational{Int8}} @test_throws OverflowError (Int8(1)//Int8(1)) / (Int8(100) + Int8(100)im)