summaryrefslogtreecommitdiff
path: root/indra/newview/tests
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-09-04 10:26:40 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-09-04 10:26:40 -0400
commita6b85244a6f943a4598ff9b7b8a3343eb1e0d11e (patch)
tree4fb1cbb3a6a14f6546aa8e6207d02ef01e343591 /indra/newview/tests
parentfe2b1b8a80abceada50e5801dbe4ff5ed781bff1 (diff)
Fix test: new traceback info changed error message.
Diffstat (limited to 'indra/newview/tests')
-rw-r--r--indra/newview/tests/llluamanager_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/tests/llluamanager_test.cpp b/indra/newview/tests/llluamanager_test.cpp
index 3209d93d39..c2abd27f96 100644
--- a/indra/newview/tests/llluamanager_test.cpp
+++ b/indra/newview/tests/llluamanager_test.cpp
@@ -463,8 +463,8 @@ namespace tut
// but now we have to give the startScriptLine() coroutine a chance to run
auto [count, result] = future.get();
ensure_equals("killed Lua script terminated normally", count, -1);
- ensure_equals("unexpected killed Lua script error",
- result.asString(), "viewer is stopping");
+ ensure_contains("unexpected killed Lua script error",
+ result.asString(), "viewer is stopping");
}
template<> template<>