Skip to content

Commit

Permalink
Fix typo in unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zpostfacto committed Feb 26, 2019
1 parent 1df3143 commit 59868d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_connection.cpp
Expand Up @@ -615,7 +615,7 @@ void TestSteamNetworkingIdentity()
const char *pszTempGenStr = "Locke Lamora";
assert( id1.SetGenericString( pszTempGenStr ) );
id1.ToString( tempBuf, sizeof(tempBuf ) );
assert( strcmp( tempBuf, "str:Lock Lamora" ) == 0 );
assert( strcmp( tempBuf, "str:Locke Lamora" ) == 0 );
assert( id2.ParseString( tempBuf ) );
assert( strcmp( id2.GetGenericString(), pszTempGenStr ) == 0 );
}
Expand Down

0 comments on commit 59868d3

Please sign in to comment.