Skip to content

Commit

Permalink
Fix missing arg on RuntimeIdentifierSpecificDataTestMethod
Browse files Browse the repository at this point in the history
Work done for #196
  • Loading branch information
atruskie committed Mar 26, 2020
1 parent d0f4d30 commit 7a5a13e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Acoustics.Test/Shared/AppConfigHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void IsMuslShouldBe()
Assert.AreEqual(expected, WasBuiltAgainstMusl);
}

[RuntimeIdentifierSpecificDataTestMethod]
[RuntimeIdentifierSpecificDataTestMethod(RidType.Compiled)]
[DataRow("win-x64", "ffmpeg", "audio-utils/win-x64/ffmpeg/ffmpeg.exe", true)]
[DataRow("win-x64", "ffprobe", "audio-utils/win-x64/ffmpeg/ffprobe.exe", true)]
[DataRow("win-x64", "sox", "audio-utils/win-x64/sox/sox.exe", true)]
Expand Down Expand Up @@ -121,7 +121,7 @@ string Invoke()
}
}

[RuntimeIdentifierSpecificDataTestMethod]
[RuntimeIdentifierSpecificDataTestMethod(RidType.Pseudo)]
[DataRow(WinX64, false)]
[DataRow(OsxX64, null)]
[DataRow(LinuxX64, null)]
Expand Down

0 comments on commit 7a5a13e

Please sign in to comment.