Skip to content

Commit

Permalink
Fix: Fixed test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanyaVRC committed Apr 10, 2022
1 parent 6c11eaa commit 82a6eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vrcosclib.Test/Utility/OscUtilityTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void TestGetCurrentAvatarConfigPathes()
var path1 = CreateConfigFileForTest("avtr_test_avatar_id1", "TestAvatar", testAvatarDirectory, true);
CollectionAssert.AreEqual(new[] { path1 }, OscUtility.GetOscAvatarConfigPathes());
var path2 = CreateConfigFileForTest("avtr_test_avatar_id2", "TestAvatar", testAvatarDirectory, true);
CollectionAssert.AreEqual(new[] { path1, path2 }, OscUtility.GetOscAvatarConfigPathes());
CollectionAssert.AreEqual(new[] { path1, path2 }, OscUtility.GetOscAvatarConfigPathes().Sort());
}

[TestCase(0)]
Expand Down

0 comments on commit 82a6eef

Please sign in to comment.