From e1a6a6e21111849f9488a716ca7ef5b2c64f993c Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Sun, 14 Apr 2024 02:41:17 +0200 Subject: [PATCH] de-randomize !isone test --- test/constructors.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/constructors.jl b/test/constructors.jl index c649b85..851cf7a 100644 --- a/test/constructors.jl +++ b/test/constructors.jl @@ -44,7 +44,7 @@ @test sprint(show, zero(RG)) == "0·(id)" @test sprint(show, one(RG)) == "1·(id)" @test isone(one(a)) - @test !isone(X) + @test !isone(a) @test iszero(zero(a)) @test sprint(show, a) == "1·b·c" @test sprint(show, -a) == "-1·b·c"