Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrit committed Jan 23, 2024
1 parent 24bf006 commit b135c3e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions TinyEmbree.Tests/Raytracer_Simple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public void SimpleQuad_ShouldBeIntersected() {
TriangleMesh mesh = new(vertices, indices);

using var rt = new Raytracer();
rt.EnableStats = true;
rt.AddMesh(mesh);
rt.CommitScene();

Expand Down Expand Up @@ -56,7 +55,6 @@ public void SimpleQuad_ShouldBeMissed() {
TriangleMesh mesh = new(vertices, indices);

using Raytracer rt = new();
rt.EnableStats = true;
rt.AddMesh(mesh);
rt.CommitScene();

Expand Down

0 comments on commit b135c3e

Please sign in to comment.