Skip to content

Commit

Permalink
Fixed broken unit tests...
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Feb 28, 2017
1 parent b4cd976 commit 4ad0006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Unit-Tests/Test-CFPP-Dictionary.cpp
Expand Up @@ -424,7 +424,7 @@ TEST( CFPP_Dictionary, ContainsValue )
ASSERT_FALSE( d2.IsValid() );

d1 << CF::Pair( "foo", "hello, world" );
d1 << CF::Pair( "bar", 42 );
d1 << CF::Pair( "bar", CF::Number( 42 ) );

ASSERT_TRUE( d1.ContainsValue( CF::String( "hello, world" ) ) );
ASSERT_TRUE( d1.ContainsValue( CF::Number( 42 ) ) );
Expand Down

0 comments on commit 4ad0006

Please sign in to comment.