Skip to content

Commit 2a0d6db

Browse files
committed
chore: Fix more warnings.
1 parent 9af893f commit 2a0d6db

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

LibDmd.Test/Frame/FrameTests.cs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,9 @@ public void Should_Correctly_Compare_Frames()
5151
var rgb2 = FrameGenerator.Random(128, 32, 24);
5252

5353
(gray1 == gray2).Should().Be(false);
54-
(gray1 == gray1).Should().Be(true);
55-
(gray2 == gray2).Should().Be(true);
56-
54+
5755
(rgb1 == rgb2).Should().Be(false);
58-
(rgb1 == rgb1).Should().Be(true);
59-
(rgb2 == rgb2).Should().Be(true);
60-
56+
6157
(rgb1 == gray1).Should().Be(false);
6258

6359
gray1.Update(gray2);
@@ -146,4 +142,4 @@ public void DebugMMColorization()
146142
RemoveLogger();
147143
}
148144
}
149-
}
145+
}

0 commit comments

Comments
 (0)