libbtrfsutil: fix test case class name for python bindings
In file test_filesystem.py the class name should be TestFilesystem, this looks like a typo and does not affect functionality. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
4b6f420aa5
commit
b3e6260e8a
|
@ -27,7 +27,7 @@ def touch(path):
|
|||
os.utime(path, (now, now))
|
||||
|
||||
|
||||
class TestSubvolume(BtrfsTestCase):
|
||||
class TestFilesystem(BtrfsTestCase):
|
||||
def super_generation(self):
|
||||
with open(self.image, 'rb') as f:
|
||||
# csum is 32 bytes, fsid is 16 bytes, bytenr is 8 bytes, flags is 8
|
||||
|
|
Loading…
Reference in New Issue