diff options
author | hut <hut@lavabit.com> | 2009-12-11 22:30:07 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-12-11 22:30:07 +0100 |
commit | d88232a386dbc2153aa12bea7f30c9c53c414010 (patch) | |
tree | 2f6f93ff6769e7fdc829a910f25513c9645d7333 /test | |
parent | 3de15ddd7fb0151e5f43f0b8e7d06bd76568e235 (diff) | |
download | ranger-d88232a386dbc2153aa12bea7f30c9c53c414010.tar.gz |
Reorganization of gui/widget hierarchy and directory structure
Diffstat (limited to 'test')
-rw-r--r-- | test/tc_directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tc_directory.py b/test/tc_directory.py index 92a4f01c..434d282f 100644 --- a/test/tc_directory.py +++ b/test/tc_directory.py @@ -10,7 +10,7 @@ from ranger.fsobject.directory import Directory from os.path import realpath, join, dirname TESTDIR = realpath(join(dirname(__file__), 'testdir')) TESTFILE = join(TESTDIR, 'testfile5234148') -NONEXISTANT_DIR = '/this/directory/will/most/certainly/not/exist' +NONEXISTANT_DIR = join(TESTDIR, 'nonexistant') import unittest class Test1(unittest.TestCase): |