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 2013/02/16 00:24:04 UTC

svn commit: r1446810 - /subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c

Author: julianfoad
Date: Fri Feb 15 23:24:04 2013
New Revision: 1446810

URL: http://svn.apache.org/r1446810
Log:
* subversion/tests/libsvn_fs_fs/fs-pack-test.c
  (file_hint_at_shard_boundary): Rename from 'file_hint_at_shard_boundry' to
    correct the spelling.
  (test_funcs): Track the rename.

Modified:
    subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c

Modified: subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c?rev=1446810&r1=1446809&r2=1446810&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_fs_fs/fs-pack-test.c Fri Feb 15 23:24:04 2013
@@ -735,12 +735,12 @@ recover_fully_packed(const svn_test_opts
 /* ------------------------------------------------------------------------ */
 /* Regression test for issue #4320 (fsfs file-hinting fails when reading a rep
    from the transaction that is commiting rev = SHARD_SIZE). */
-#define REPO_NAME "test-repo-file-hint-at-shard-boundry"
+#define REPO_NAME "test-repo-file-hint-at-shard-boundary"
 #define SHARD_SIZE 4
 #define MAX_REV (SHARD_SIZE - 1)
 static svn_error_t *
-file_hint_at_shard_boundry(const svn_test_opts_t *opts,
-                           apr_pool_t *pool)
+file_hint_at_shard_boundary(const svn_test_opts_t *opts,
+                            apr_pool_t *pool)
 {
   apr_pool_t *subpool;
   svn_fs_t *fs;
@@ -810,7 +810,7 @@ struct svn_test_descriptor_t test_funcs[
                        "get/set huge packed revprops in FSFS"),
     SVN_TEST_OPTS_PASS(recover_fully_packed,
                        "recover a fully packed filesystem"),
-    SVN_TEST_OPTS_PASS(file_hint_at_shard_boundry,
-                       "test file hint at shard boundry"),
+    SVN_TEST_OPTS_PASS(file_hint_at_shard_boundary,
+                       "test file hint at shard boundary"),
     SVN_TEST_NULL
   };