Skip to content

Commit

Permalink
Change test to match new behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
joethephish committed Oct 20, 2022
1 parent 7fcc40a commit 4c8ede8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3225,7 +3225,7 @@ public void TestTagsInChoice()
var story = CompileString (storyStr);

story.Continue ();
Assert.AreEqual (new List<string> {"one", "two"}, story.currentTags);
Assert.AreEqual (0, story.currentTags.Count);
Assert.AreEqual (1, story.currentChoices.Count);
Assert.AreEqual (new List<string> {"one", "two"}, story.currentChoices[0].tags);

Expand Down

0 comments on commit 4c8ede8

Please sign in to comment.