diff --git a/frontend_tests/zjsunit/zblueslip.js b/frontend_tests/zjsunit/zblueslip.js index 3e4c922d34..539de29f02 100644 --- a/frontend_tests/zjsunit/zblueslip.js +++ b/frontend_tests/zjsunit/zblueslip.js @@ -56,7 +56,7 @@ exports.make_zblueslip = function () { for (const obj of lib.test_data[name]) { const message = obj.message; if (obj.count > 0) { - throw Error(`We saw ${obj.count} (expected ${obj.expected_count}) of '${name}': ${message}`); + throw Error(`We did not see expected ${obj.expected_count} of '${name}': ${message}`); } else if (obj.count < 0) { throw Error(`We saw ${obj.expected_count - obj.count} (expected ${obj.expected_count}) of '${name}': ${message}`); }