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 2010/06/28 16:40:19 UTC

svn commit: r958593 - /subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c

Author: julianfoad
Date: Mon Jun 28 14:40:18 2010
New Revision: 958593

URL: http://svn.apache.org/viewvc?rev=958593&view=rev
Log:
* subversion/tests/libsvn_subr/dirent_uri-test.c
  (test_dirent_from_file_url): Following up on r958584, change the expected
    file:// URLs to the form that svn_dirent_canonicalize() produces, even
    if it's not the form the RFCs specify.

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c?rev=958593&r1=958592&r2=958593&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Mon Jun 28 14:40:18 2010
@@ -2682,10 +2682,10 @@ test_dirent_from_file_url(apr_pool_t *po
     const char *url;
     const char *result;
   } tests[] = {
-    { "file:///",                  "/" },
+    { "file://",                   "/" },
     { "file:///dir",               "/dir" },
     { "file:///dir/path",          "/dir/path" },
-    { "file://localhost/",         "/" },
+    { "file://localhost",          "/" },
     { "file://localhost/dir",      "/dir" },
     { "file://localhost/dir/path", "/dir/path" },
 #ifdef SVN_USE_DOS_PATHS