changed method for generating something random

This commit is contained in:
2019-07-15 22:48:59 +02:00
parent a625f19d0d
commit e4ce2a472a
7 changed files with 57 additions and 60 deletions

View File

@ -8,8 +8,8 @@ namespace InjectorTest
[Fact]
public void Test()
{
const string expected = "[-] HelperTest.Test Id: 0";
var actual = Helper.WriteMethodString(new TestClock(), 0);
const string expected = "[-] HelperTest.Test Id: ";
var actual = Helper.WriteMethodString(new TestClock(), "");
Assert.Equal(expected, actual);
}