match quotes (breaks editor syntax hilighting)

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13721 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled
2006-03-31 21:08:24 +00:00
parent a82ad54aa5
commit fa132e4bab

View File

@@ -15,8 +15,8 @@ int main( int argc, char* argv[] )
int a, b;
g_log_set_always_fatal( G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING );
a = b = 1;
do_test( a == b, 'integer equality" );
do_test( a != b, 'integer inequality? (should fail)" );
do_test( a == b, "integer equality" );
do_test( a != b, "integer inequality? (should fail)" );
do_test_args( a == b, "fancy info", __FILE__, __LINE__, "a = %d, b = %b", a, b );