Skip to content

Commit

Permalink
changed test
Browse files Browse the repository at this point in the history
  • Loading branch information
Doraku committed Feb 8, 2021
1 parent f7daabd commit c5c1217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/DefaultEcs.Test/Command/EntityCommandRecorderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ public void Set_Should_set_blittable_component_on_recorded_entity()
Entity entity = world.CreateEntity();

EntityRecord record = recorder.Record(entity);
record.Set(true);
record.Set<bool>();

recorder.Execute();

Check.That(entity.Get<bool>()).IsTrue();
Check.That(entity.Get<bool>()).IsFalse();
}

[Fact]
Expand Down

0 comments on commit c5c1217

Please sign in to comment.