diff test/SbpOperators/stencil_set_test.jl @ 1608:8315c456e3b4 feature/boundary_conditions

Simplify parsing of constants from stencil set
author Jonatan Werpers <jonatan@werpers.com>
date Sun, 09 Jun 2024 00:17:44 +0200
parents 84dc3b9b449b
children 471a948cd2b2
line wrap: on
line diff
--- a/test/SbpOperators/stencil_set_test.jl	Sun Jun 09 00:02:40 2024 +0200
+++ b/test/SbpOperators/stencil_set_test.jl	Sun Jun 09 00:17:44 2024 +0200
@@ -152,14 +152,6 @@
         @test_throws ArgumentError parse_tuple(toml["e3"])
         @test_throws ArgumentError parse_tuple(toml["e4"])
     end
-
-    @testset "parse_named_tuple" begin
-        toml = TOML.parse("""
-            NamedTuple = {a = "17/48", b = "0.2505765857"}
-        """)
-        @test parse_named_tuple(toml["NamedTuple"]) == (b = Rational(0.2505765857), a = 17//48)
-    end
-
 end
 
 @testset "parse_rational" begin