diff --git a/src/test/java/ortus/boxlang/modules/compat/ClientScopeTest.java b/src/test/java/ortus/boxlang/modules/compat/ClientScopeTest.java index ef57433..85bec9f 100644 --- a/src/test/java/ortus/boxlang/modules/compat/ClientScopeTest.java +++ b/src/test/java/ortus/boxlang/modules/compat/ClientScopeTest.java @@ -25,7 +25,7 @@ public void testClientScope() { // @formatter:off runtime.executeSource( """ - application name="myApp-with-client-scope-on" clientManagement="true"; + bx:application name="myApp-with-client-scope-on" clientManagement="true"; result = application; result2 = client; @@ -54,7 +54,7 @@ public void testGetClientVariablesList() { // @formatter:off runtime.executeSource( """ - application name="myApp-with-client-scope-variables" clientManagement="true"; + bx:application name="myApp-with-client-scope-variables" clientManagement="true"; client.foo = "bar"; result = getClientVariablesList();