summaryrefslogtreecommitdiff
path: root/test/actor/actor.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/actor/actor.test.cpp')
-rw-r--r--test/actor/actor.test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/actor/actor.test.cpp b/test/actor/actor.test.cpp
index 03f41a6e64..431323229c 100644
--- a/test/actor/actor.test.cpp
+++ b/test/actor/actor.test.cpp
@@ -10,7 +10,7 @@
using namespace mbgl;
using namespace std::chrono_literals;
-TEST(Actor, Construction) {
+TEST(Actor, Construction) { // NOLINT
// Construction is currently synchronous. It may become asynchronous in the future.
struct Test {
@@ -26,7 +26,7 @@ TEST(Actor, Construction) {
EXPECT_TRUE(constructed);
}
-TEST(Actor, DestructionClosesMailbox) {
+TEST(Actor, DestructionClosesMailbox) { // NOLINT
// Destruction blocks until the actor is not receiving.
struct Test {
@@ -67,7 +67,7 @@ TEST(Actor, DestructionClosesMailbox) {
exitingPromise.set_value();
}
-TEST(Actor, OrderedMailbox) {
+TEST(Actor, OrderedMailbox) { // NOLINT
// Messages are processed in order.
struct Test {
@@ -102,7 +102,7 @@ TEST(Actor, OrderedMailbox) {
endedFuture.wait();
}
-TEST(Actor, NonConcurrentMailbox) {
+TEST(Actor, NonConcurrentMailbox) { // NOLINT
// An individual actor is never itself concurrent.
struct Test {