Skip to content

Commit 15c585c

Browse files
author
Arthur Aulicino
committed
test: fix Three_MoveNext_Increments_To_Three test not incrementing to three
1 parent 39b133a commit 15c585c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/Editor/Samples/Counter/CounterTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@ public void Three_MoveNext_Increments_To_Three ()
6161
{
6262
Counter.Start();
6363

64+
Runner.MoveNext();
6465
Runner.MoveNext();
6566
Runner.MoveNext();
6667

67-
Assert.AreEqual(2, Counter.Current);
68+
Assert.AreEqual(3, Counter.Current);
6869
}
6970
}
7071

0 commit comments

Comments
 (0)