You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2014/02/26 12:57:40 UTC

svn commit: r1572025 - /subversion/trunk/subversion/tests/libsvn_repos/repos-test.c

Author: julianfoad
Date: Wed Feb 26 11:57:39 2014
New Revision: 1572025

URL: http://svn.apache.org/r1572025
Log:
* subversion/tests/libsvn_repos/repos-test.c
  (get_logs): Fix the error message: it was mis-reporting the expected result.

Modified:
    subversion/trunk/subversion/tests/libsvn_repos/repos-test.c

Modified: subversion/trunk/subversion/tests/libsvn_repos/repos-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_repos/repos-test.c?rev=1572025&r1=1572024&r2=1572025&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_repos/repos-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_repos/repos-test.c Wed Feb 26 11:57:39 2014
@@ -2971,7 +2971,7 @@ get_logs(const svn_test_opts_t *opts,
                                          "Log with start=%ld,end=%ld,limit=%d "
                                          "returned %ld entries (expected %ld)",
                                          start_arg, end_arg, limit,
-                                         num_logs, max_logs);
+                                         num_logs, num_expected);
             }
         }
     }