Merge branch 'fix/useIsHiddenPath' into devel

This commit is contained in:
Gina Häußge 2015-11-20 10:12:33 +01:00
commit 5fb1c2d7a0

View file

@ -260,4 +260,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)