Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
SRIKKANTH committed Nov 12, 2024
1 parent 7bb2e16 commit b402609
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions lisa/features/disks.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ def _initialize(self, *args: Any, **kwargs: Any) -> None:
def get_resource_disk_mount_point(self) -> str:
raise NotImplementedError

def get_resource_disks(self) -> List[str]:
raise NotImplementedError

def get_luns(self) -> Dict[str, int]:
raise NotImplementedError

Expand Down
4 changes: 2 additions & 2 deletions microsoft/testsuites/core/azure_image_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -1198,8 +1198,8 @@ def verify_resource_disk_file_system(self, node: RemoteNode) -> None:
)
for partition in disk_info.partitions:
# by default, resource disk comes with ntfs type
# waagent or cloud-init will format it unless there are some commands hung
# or interrupt
# waagent or cloud-init will format it unless there are some commands
# hung or interrupt
assert_that(
partition.fstype,
"Resource disk file system type should not equal to ntfs",
Expand Down

0 comments on commit b402609

Please sign in to comment.