diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-07-29 18:07:16 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-07-29 18:07:16 +0200 |
commit | bb11006f635a69dd9244e09e4359ed02eff8fe84 (patch) | |
tree | 7fda9eda216b1683ff3dd954b6300c13bfaf2b14 /tests/cancel.lua | |
parent | 34b2b5e712ea1cc59004ca48f79f54af162993a5 (diff) | |
download | lanes-bb11006f635a69dd9244e09e4359ed02eff8fe84.tar.gz lanes-bb11006f635a69dd9244e09e4359ed02eff8fe84.tar.bz2 lanes-bb11006f635a69dd9244e09e4359ed02eff8fe84.zip |
Internal refactorization to properly handle lua_resume idiosyncrasies
Diffstat (limited to 'tests/cancel.lua')
-rw-r--r-- | tests/cancel.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cancel.lua b/tests/cancel.lua index 8dfccd2..1984c85 100644 --- a/tests/cancel.lua +++ b/tests/cancel.lua | |||
@@ -72,7 +72,7 @@ local waitCancellation = function( h, expected_status) | |||
72 | until h.status ~= "running" | 72 | until h.status ~= "running" |
73 | end | 73 | end |
74 | print( "lane status:", h.status) | 74 | print( "lane status:", h.status) |
75 | assert( h.status == expected_status, h.status .. " ~= " .. expected_status) | 75 | assert( h.status == expected_status, "lane status " .. h.status .. " (actual) ~= " .. expected_status .. " (expected)") |
76 | print "test OK" | 76 | print "test OK" |
77 | end | 77 | end |
78 | 78 | ||