Skip to content

Commit 4b0e5d9

Browse files
committed
Review fix
1 parent bc029ad commit 4b0e5d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/tests/TestNullable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ static void TestMove(nlTestSuite * inSuite, void * inContext)
169169
CtorDtorCounter::ResetCounter();
170170

171171
{
172-
auto testSrc = MakeNullable<MovableCtorDtorCounter>(400); // contstruct
172+
auto testSrc = MakeNullable<MovableCtorDtorCounter>(400); // construct
173173
Nullable<MovableCtorDtorCounter> testDst(std::move(testSrc)); // move construct
174174
NL_TEST_ASSERT(inSuite, CtorDtorCounter::created == 2 && CtorDtorCounter::destroyed == 0);
175175
NL_TEST_ASSERT(inSuite, !testDst.IsNull() && testDst.Value().m == 400);

0 commit comments

Comments
 (0)