You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/11/07 12:27:39 UTC

svn commit: r1406558 - /subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c

Author: brane
Date: Wed Nov  7 11:27:39 2012
New Revision: 1406558

URL: http://svn.apache.org/viewvc?rev=1406558&view=rev
Log:
On the wc-collate-path branch:

* subversion/tests/libsvn_subr/utf-test.c (normalized_compare):
   Add quotes around strings in the error message.

Modified:
    subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c

Modified: subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c
URL: http://svn.apache.org/viewvc/subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c?rev=1406558&r1=1406557&r2=1406558&view=diff
==============================================================================
--- subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c (original)
+++ subversion/branches/wc-collate-path/subversion/tests/libsvn_subr/utf-test.c Wed Nov  7 11:27:39 2012
@@ -334,7 +334,7 @@ normalized_compare(const char *stra, int
     {
       return svn_error_createf
         (SVN_ERR_TEST_FAILED, NULL,
-         "Expected %s %c %s but %s %c %s",
+         "Expected '%s' %c '%s' but '%s' %c '%s'",
          stratag, expected, strbtag,
          stratag, (!result ? '=' : (result < 0 ? '<' : '>')), strbtag);
     }