Skip to content

Commit

Permalink
test: check visuals against VisualType::UNKNOWN instead of null
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Jun 29, 2024
1 parent 36aaab8 commit a44a0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZenKit.Test/Vobs/TestCodeMaster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void TestLoad()
Assert.That(vob.FailureTarget, Is.EqualTo(""));
Assert.That(vob.UntriggeredCancels, Is.False);
Assert.That(vob.Slaves, Is.EqualTo(Slaves));
Assert.That(vob.Visual, Is.Null);
Assert.That(vob.Visual?.Type, Is.EqualTo(VisualType.Unknown));
}

[Test]
Expand Down

0 comments on commit a44a0e2

Please sign in to comment.