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/17 23:01:17 UTC

svn commit: r1569116 - /subversion/trunk/subversion/tests/libsvn_ra/ra-test.c

Author: julianfoad
Date: Mon Feb 17 22:01:16 2014
New Revision: 1569116

URL: http://svn.apache.org/r1569116
Log:
* subversion/tests/libsvn_ra/ra-test.c
  (tunnel_callback_test): Rename from 'tunel_callback_test', fixing a typo.
  (test_funcs): Track the rename.

Modified:
    subversion/trunk/subversion/tests/libsvn_ra/ra-test.c

Modified: subversion/trunk/subversion/tests/libsvn_ra/ra-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_ra/ra-test.c?rev=1569116&r1=1569115&r2=1569116&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_ra/ra-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_ra/ra-test.c Mon Feb 17 22:01:16 2014
@@ -278,8 +278,8 @@ check_tunnel_callback_test(const svn_tes
 }
 
 static svn_error_t *
-tunel_callback_test(const svn_test_opts_t *opts,
-                    apr_pool_t *pool)
+tunnel_callback_test(const svn_test_opts_t *opts,
+                     apr_pool_t *pool)
 {
   apr_pool_t *connection_pool;
   svn_repos_t *repos;
@@ -337,7 +337,7 @@ struct svn_test_descriptor_t test_funcs[
                        "test svn_ra_get_location_segments"),
     SVN_TEST_OPTS_PASS(check_tunnel_callback_test,
                        "test ra_svn tunnel callback check"),
-    SVN_TEST_OPTS_PASS(tunel_callback_test,
+    SVN_TEST_OPTS_PASS(tunnel_callback_test,
                        "test ra_svn tunnel creation callbacks"),
     SVN_TEST_NULL
   };