From a5d596872a6098782d8ed2c1e4da94a71df79b4f Mon Sep 17 00:00:00 2001 From: Benjamin Lorenz Date: Thu, 22 Feb 2024 16:18:45 +0100 Subject: [PATCH] Update test/Serialization/PolyhedralGeometry.jl --- test/Serialization/PolyhedralGeometry.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Serialization/PolyhedralGeometry.jl b/test/Serialization/PolyhedralGeometry.jl index 2861d63a4220..2b80ea0de0e6 100644 --- a/test/Serialization/PolyhedralGeometry.jl +++ b/test/Serialization/PolyhedralGeometry.jl @@ -80,10 +80,10 @@ using Oscar: _integer_variables end nfdodecahedron = normal_fan(dodecahedron()) - test_save_load_roundtrip(path, nfsquare) do loaded - @test n_rays(nfsquare) == n_rays(loaded) - @test number_of_maximal_cones(nfsquare) == number_of_maximal_cones(loaded) - @test dim(nfsquare) == dim(loaded) + test_save_load_roundtrip(path, nfdodecahedron) do loaded + @test n_rays(nfdodecahedron) == n_rays(loaded) + @test number_of_maximal_cones(nfdodecahedron) == number_of_maximal_cones(loaded) + @test dim(nfdodecahedron) == dim(loaded) end end