diff --git a/public/tests/test_strings.c b/public/tests/test_strings.c index 39572880..1d99b1e5 100644 --- a/public/tests/test_strings.c +++ b/public/tests/test_strings.c @@ -46,17 +46,6 @@ static int Test_Strnlwr( void ) return 0; } -static int Test_Colorstr( void ) -{ - if( Q_colorstr( "^1color^2string" ) != 4 ) - return 1; - - if( Q_colorstr( "colorlessstring" ) != 0 ) - return 2; - - return 0; -} - static int Test_FixSlashes( void ) { string s = "path\\with\\back\\slashes"; @@ -93,11 +82,6 @@ int main( void ) if( ret > 0 ) return ret + 16; - ret = Test_Colorstr(); - - if( ret > 0 ) - return ret + 32; - ret = Test_FixSlashes(); if( ret > 0 )