Skip to content

Commit 8b68f5d

Browse files
committed
Fix unit test typo.
1 parent 19cc525 commit 8b68f5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/NodeEngineTest/NodeEditorTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ TEST (NodeEditorGetInfoTest)
5555

5656
NodeEditorInfo info = env.nodeEditor.GetInfo ();
5757

58-
ASSERT (info.view.width = 800);
59-
ASSERT (info.view.height = 600);
58+
ASSERT (info.view.width == 800);
59+
ASSERT (info.view.height == 600);
6060

6161
ASSERT (info.nodes.size () == 3);
6262
ASSERT (info.nodes[0].id == intNode->GetId ());

0 commit comments

Comments
 (0)