We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ba0d6 commit 96bd56bCopy full SHA for 96bd56b
1 file changed
fs/tests/__init__.py
@@ -531,7 +531,8 @@ def test_infokeys(self):
531
self.fs.setcontents("info.txt", test_str)
532
info = self.fs.getinfo("info.txt")
533
for k, v in info.iteritems():
534
- self.assertEqual(self.fs.getinfokeys('info.txt', k), {k: v})
+ if not (k == 'asbytes' and callable(v)):
535
+ self.assertEqual(self.fs.getinfokeys('info.txt', k), {k: v})
536
537
test_info = {}
538
if 'modified_time' in info:
0 commit comments