diff options
author | Rod Smith <rod.smith@canonical.com> | 2020-06-18 12:53:33 -0400 |
---|---|---|
committer | Rod Smith <rod.smith@canonical.com> | 2020-06-18 12:53:33 -0400 |
commit | 7e47168f1c277cb688224f5ce13f4adf5c525180 (patch) | |
tree | 039ff48b2a85dd4f9a1340fbbf0bb2f06d283ccd | |
parent | 532a82468bb6229744021f7a1772ca9a4f28ff64 (diff) |
Fix broken fstrim_test module definition
-rwxr-xr-x | bin/fstrim_test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/fstrim_test b/bin/fstrim_test index c66d421c..94556059 100755 --- a/bin/fstrim_test +++ b/bin/fstrim_test @@ -37,14 +37,14 @@ from subprocess import ( PIPE, Popen ) -import disk_support +import checkbox_support.disk_support def mount_filesystem(device): if "/dev" not in device and device != "": device = "/dev/" + device - test_disk = disk_support.Disk(device) + test_disk = checkbox_support.disk_support.Disk(device) mount_point = None if test_disk.mount_filesystem(False): mount_point = test_disk.get_mount_point() |