Skip to content
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update liquidjava-verifier/src/test/java/liquidjava/integration/Conte…
…xtIntegrationTest.java

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
CatarinaGamboa and Copilot authored Nov 13, 2025
commit 2bc333f8d66e9b3f4e9091fc5960d60b205e7e5b
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void testCompleteVariableLifecycle() {
);
context.addVarToContext("y", intType, localPred, factory.createLiteral(0));

assertTrue(context.hasVariable("x"), "Global variable accessible in nested scope");
assertTrue(context.hasVariable("x"), "Base scope variable accessible in nested scope");
assertTrue(context.hasVariable("y"), "Local variable exists");
assertEquals(2, context.getAllVariables().size(), "Should have 2 variables");

Expand Down