2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

Fix expected/actual order

This commit is contained in:
2021-12-11 13:04:31 +00:00
parent fc8337df46
commit 825f707437

View File

@@ -65,7 +65,7 @@ namespace Raylib_cs.Tests
for (int i = 0; i < input.Length; i++)
{
Assert.Equal(codepoints1[i], input[i]);
Assert.Equal(input[i], codepoints1[i]);
}
}
@@ -74,7 +74,7 @@ namespace Raylib_cs.Tests
{
int byteSize = 0;
string text = Raylib.CodepointToUTF8(224, ref byteSize).ToString();
Assert.Equal(text, "à");
Assert.Equal("à", text);
}
[Fact]
@@ -86,7 +86,7 @@ namespace Raylib_cs.Tests
int[] codepoints1 = Raylib.LoadCodepoints(input, ref count);
string text = Raylib.TextCodepointsToUTF8(codepoints1, codepoints1.Length).ToString();
Assert.Equal(text, input);
Assert.Equal(input, text);
}
}
}