From 39dfab704f7f66889790fb18e722169df16eab79 Mon Sep 17 00:00:00 2001 From: Morgan Rodgers Date: Fri, 22 Nov 2024 09:55:05 +0100 Subject: [PATCH] fix new test --- test/Groups/gsets.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Groups/gsets.jl b/test/Groups/gsets.jl index 46d31fdc2c3..667cae0fb65 100644 --- a/test/Groups/gsets.jl +++ b/test/Groups/gsets.jl @@ -367,13 +367,13 @@ end @test length(orb) == 3 - K = algebraic_closure(QQ) - e = one(K) + e = one(QQBar) s, c = sincospi(2 * e / 3) mat_rot = matrix([c -s; s c]) G = matrix_group(mat_rot) - p = K.([1, 0]) + p = QQBar.([1, 0]) orb = orbit(G, *, p) + @test length(orb) == 3 end