diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-09-04 10:26:40 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-09-04 10:26:40 -0400 |
commit | a6b85244a6f943a4598ff9b7b8a3343eb1e0d11e (patch) | |
tree | 4fb1cbb3a6a14f6546aa8e6207d02ef01e343591 /indra/newview/tests | |
parent | fe2b1b8a80abceada50e5801dbe4ff5ed781bff1 (diff) |
Fix test: new traceback info changed error message.
Diffstat (limited to 'indra/newview/tests')
-rw-r--r-- | indra/newview/tests/llluamanager_test.cpp | 4 |
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<> |