Fixed a broken unit test (pro tip: test new tests before committing...)

This commit is contained in:
Gina Häußge 2015-11-20 10:12:15 +01:00
parent a731f748d9
commit 454f16a7c3

View file

@ -204,4 +204,5 @@ class IsHiddenPathTest(unittest.TestCase):
)
@ddt.unpack
def test_is_hidden_path(self, path_id, expected):
self.assertEqual(octoprint.util.is_hidden_path(getattr(self, path_id)), expected)
path = getattr(self, path_id) if path_id is not None else None
self.assertEqual(octoprint.util.is_hidden_path(path), expected)