From 9cc532ca2107150553c8defca460a7ab80819143 Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Tue, 26 Nov 2024 19:50:47 +0300 Subject: [PATCH] Test deprecation --- test/test_utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utils.jl b/test/test_utils.jl index 0ed9523..b909287 100644 --- a/test/test_utils.jl +++ b/test/test_utils.jl @@ -10,6 +10,6 @@ end st = grammar2symboltable(g, DefiningAVariable) @test st[:x] == 1 - st = SymbolTable(g, DefiningAVariable) + @test_warn r"deprecated" st = SymbolTable(g, DefiningAVariable) @test st[:x] == 1 end