diff tests/test_fetch_command.py @ 866:20e73b5ab6f7

test_util: merge load_svndump_fixture() into TestBase
author Patrick Mezard <patrick@mezard.eu>
date Thu, 19 Apr 2012 18:29:28 +0200
parents 04729f3a3d17
children 312f36a425f0
line wrap: on
line diff
--- a/tests/test_fetch_command.py
+++ b/tests/test_fetch_command.py
@@ -152,12 +152,11 @@ class TestBasicRepoLayout(test_util.Test
         self.test_fetch_when_trunk_has_no_files(stupid=True)
 
     def test_path_quoting(self, stupid=False):
-        test_util.load_svndump_fixture(self.repo_path,
-                                       'non_ascii_path_1.svndump')
+        repo_path = self.load_svndump('non_ascii_path_1.svndump')
         subdir = '/b\xC3\xB8b'
         quoted_subdir = urllib.quote(subdir)
 
-        repo_url = test_util.fileurl(self.repo_path)
+        repo_url = test_util.fileurl(repo_path)
         wc_path = self.wc_path
         wc2_path = wc_path + '-2'