We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d53550f + 1507024 commit 2fc00a1Copy full SHA for 2fc00a1
1 file changed
tests/common/configuration.py
@@ -13,8 +13,8 @@ def test_load_config(self):
13
with self.assertRaises(Exception) as context:
14
config.load_config(self.config_path + ".ini")
15
16
- self.assertTrue("Configuration file type unknown or not supportted: %s%stestfile_config.ini" % \
17
- (os.path.dirname(os.path.abspath(__file__)), os.sep) in str(context.exception))
+ self.assertTrue("Configuration file type unknown or not supportted"
+ in str(context.exception))
18
19
def test_load_directly(self):
20
config = Configuration(self.config_path + ".yaml")
0 commit comments