aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/thread/thread_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/thread/thread_test.cpp')
-rw-r--r--vespalib/src/tests/thread/thread_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/thread/thread_test.cpp b/vespalib/src/tests/thread/thread_test.cpp
index ee4f97c34cc..af1fb626462 100644
--- a/vespalib/src/tests/thread/thread_test.cpp
+++ b/vespalib/src/tests/thread/thread_test.cpp
@@ -50,7 +50,7 @@ TEST("stop before start") {
thread.start();
thread.join();
}
- EXPECT_TRUE(agent.started);
+ EXPECT_TRUE(!agent.started);
EXPECT_EQUAL(0, agent.loopCnt);
}