Skip to content

Commit

Permalink
chore: Changes during code review
Browse files Browse the repository at this point in the history
- Renamed vars
  • Loading branch information
Curly committed Feb 25, 2024
1 parent f85e77c commit 3a5fc8c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public void Should_match_valid_file()
{
var sut = new Aif();

var testData1 = new byte[] { 0x46, 0x4F, 0x52, 0x4D, 0x11, 0x12, 0x19, 0x98, 0x41, 0x49, 0x46, 0x46, 0x11 };
var testData2 = new byte[] { 0x46, 0x4F, 0x52, 0x4D, 0x00, 0x01, 0x02, 0x03, 0x41, 0x49, 0x46, 0x46, 0x11 };
var testDataOne = new byte[] { 0x46, 0x4F, 0x52, 0x4D, 0x11, 0x12, 0x19, 0x98, 0x41, 0x49, 0x46, 0x46, 0x11 };
var testDataTwo = new byte[] { 0x46, 0x4F, 0x52, 0x4D, 0x00, 0x01, 0x02, 0x03, 0x41, 0x49, 0x46, 0x46, 0x11 };

sut.Matches(testData1).Should().BeTrue();
sut.Matches(testData2).Should().BeTrue();
sut.Matches(testDataOne).Should().BeTrue();
sut.Matches(testDataTwo).Should().BeTrue();
}

[Fact]
Expand Down

0 comments on commit 3a5fc8c

Please sign in to comment.