diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2013-03-06 16:22:06 -0800 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2013-03-06 16:22:06 -0800 |
| commit | c31a9793c62457a68217326e9dfded8f0fb38d96 (patch) | |
| tree | 5c95fce2bf97e92394b1b0a5dda5496022de4ae1 /tests/utils_tests/module_loading.py | |
| parent | 876fc3912881e15eda2b02c3b4933af313d0a498 (diff) | |
| parent | 9ba0e4e4ee2725679ae5cb9e3dd637b0208e5ad3 (diff) | |
Merge pull request #882 from loic/testfix
Fixed minor warnings in tests.
Diffstat (limited to 'tests/utils_tests/module_loading.py')
| -rw-r--r-- | tests/utils_tests/module_loading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/module_loading.py b/tests/utils_tests/module_loading.py index 9ff3f18d26..cd97e1436d 100644 --- a/tests/utils_tests/module_loading.py +++ b/tests/utils_tests/module_loading.py @@ -113,7 +113,7 @@ class ModuleImportTestCase(unittest.TestCase): # Test exceptions raised for path in ('no_dots_in_path', 'unexistent.path', - 'tests.utils_tests.unexistent'): + 'utils_tests.unexistent'): self.assertRaises(ImproperlyConfigured, import_by_path, path) with self.assertRaises(ImproperlyConfigured) as cm: |
