Skip to content

Commit

Permalink
Adapt to base FIELDS only
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Oct 13, 2023
1 parent 8aa0e02 commit 291a122
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/SmashProductLie-test.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@testset "SmashProductLie.jl tests" begin
@testset "smash_product; R = $R" for R in [QQ, polynomial_ring(QQ, ["x", "y", "z"])[1]]
@testset "smash_product; R = $R" for R in [QQ, cyclotomic_field(4)[1]]
@testset "sl_2(QQ) ⋉ V" begin
L = special_linear_lie_algebra(QQ, 2)
V = standard_module(L)
Expand Down
6 changes: 3 additions & 3 deletions test/SmashProductLieDeform-test.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@testset "SmashProductLieDeform.jl tests" begin

@testset "SmashProductLieDeform constructor" begin
@testset "R = $R" for R in [QQ, polynomial_ring(QQ, ["x", "y", "z"])[1]]
@testset "R = $R" for R in [QQ, cyclotomic_field(4)[1]]
L = special_orthogonal_lie_algebra(R, 4)
V = exterior_power(standard_module(L), 2)
sp = smash_product(L, V)
Expand Down Expand Up @@ -55,7 +55,7 @@
end

@testset "symmetric_deformation constructor" begin
@testset "R = $R" for R in [QQ, polynomial_ring(QQ, ["x", "y", "z"])[1]]
@testset "R = $R" for R in [QQ, cyclotomic_field(4)[1]]

for (sp, dimL, dimV) in [begin
L = special_orthogonal_lie_algebra(R, 4)
Expand Down Expand Up @@ -98,7 +98,7 @@
end

@testset "SmashProductLieDeform sanitize checks" begin
@testset "R = $R" for R in [QQ, polynomial_ring(QQ, ["x", "y", "z"])[1]]
@testset "R = $R" for R in [QQ, cyclotomic_field(4)[1]]

L = special_orthogonal_lie_algebra(R, 4)
V = exterior_power(standard_module(L), 2)
Expand Down

0 comments on commit 291a122

Please sign in to comment.