Skip to content

Commit 773136d

Browse files
committed
Restyle
1 parent 93e5331 commit 773136d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/tests/TestNullable.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,12 @@ static void TestMove(nlTestSuite * inSuite, void * inContext)
179179

180180
CtorDtorCounter::ResetCounter();
181181
{
182-
Nullable<MovableCtorDtorCounter> testDst; // no object construction
182+
Nullable<MovableCtorDtorCounter> testDst; // no object construction
183183
NL_TEST_ASSERT(inSuite, CtorDtorCounter::created == 0 && CtorDtorCounter::destroyed == 0);
184184
NL_TEST_ASSERT(inSuite, !!testDst.IsNull());
185185

186186
auto testSrc = MakeNullable<MovableCtorDtorCounter>(401); // construct object
187-
testDst = std::move(testSrc); // construct a copy
187+
testDst = std::move(testSrc); // construct a copy
188188
NL_TEST_ASSERT(inSuite, CtorDtorCounter::created == 2 && CtorDtorCounter::destroyed == 0);
189189
NL_TEST_ASSERT(inSuite, !testDst.IsNull() && testDst.Value().m == 401);
190190
}

0 commit comments

Comments
 (0)