Skip to content

Commit ed440fe

Browse files
committed
-
1 parent e473667 commit ed440fe

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Documentation](http://docs.pythontoolbox.org)
22

3-
[Installation](http://docs.pythontoolbox.org/intro/installation/index.html)
3+
[Installation](http://docs.pythontoolbox.org/installation.html)
44

55

66
# What is the Python Toolbox? #

test_python_toolbox/test_path_tools/test_get_root_path_of_module.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
def test():
44
''' '''
55
import email.charset
6-
import re
76
assert get_root_path_of_module(email) == \
8-
get_root_path_of_module(email.charset) == \
9-
get_root_path_of_module(re)
7+
get_root_path_of_module(email.charset)
8+
9+
import python_toolbox.path_tools
10+
assert get_root_path_of_module(python_toolbox) == \
11+
get_root_path_of_module(python_toolbox.path_tools)
12+

0 commit comments

Comments
 (0)