aboutsummaryrefslogtreecommitdiff
path: root/src/test/ValueBrokerTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ValueBrokerTest.cpp')
-rw-r--r--src/test/ValueBrokerTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ValueBrokerTest.cpp b/src/test/ValueBrokerTest.cpp
index e6bb058..5928c37 100644
--- a/src/test/ValueBrokerTest.cpp
+++ b/src/test/ValueBrokerTest.cpp
@@ -13,7 +13,7 @@ public:
int write_count = 0;
int value = 0;
- ValueBroker<int> broker{
+ ValueBroker<int> broker {
[this](const int & target) -> void {
this->write_count++;
this->value = target;
@@ -23,7 +23,7 @@ public:
return this->value;
},
};
- Proxy<int> proxy{broker};
+ Proxy<int> proxy {broker};
void SetUp() override {
ASSERT_EQ(read_count, 0);