Skip to content

Commit

Permalink
Fix line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
xPaw committed Aug 22, 2024
1 parent 555fdd7 commit e7ccb30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamKit2/Tests/ApiSurfaceFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void ApiSurfaceIsWellKnown()
using var stream = assembly.GetManifestResourceStream( "Tests.Files.apisurface.txt" );
using var ms = new MemoryStream();
stream.CopyTo( ms );
var expected = Encoding.UTF8.GetString( ms.ToArray() );
var expected = Encoding.UTF8.GetString( ms.ToArray() ).ReplaceLineEndings( "\n" );

var actual = GenerateApiSurface( typeof( SteamKit2.SteamClient ).GetTypeInfo().Assembly );

Expand Down

0 comments on commit e7ccb30

Please sign in to comment.