Skip to content

Commit 6493019

Browse files
Update liquidjava-verifier/src/test/java/liquidjava/integration/ContextIntegrationTest.java
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 2bc333f commit 6493019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

liquidjava-verifier/src/test/java/liquidjava/integration/ContextIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ void testCompleteVariableLifecycle() {
6969

7070
// Exit scope
7171
context.exitContext();
72-
assertTrue(context.hasVariable("x"), "Global variable still exists");
72+
assertTrue(context.hasVariable("x"), "Base scope variable still exists");
7373
assertFalse(context.hasVariable("y"), "Local variable removed");
74-
assertEquals(1, context.getAllVariables().size(), "Only global variable remains");
74+
assertEquals(1, context.getAllVariables().size(), "Only base scope variable remains");
7575
}
7676

7777
@Test

0 commit comments

Comments
 (0)