Skip to content

Commit ba7a0e7

Browse files
Fix lint
1 parent 6f8e555 commit ba7a0e7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/integration/models/linode/test_linode.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def test_linode_resize(create_linode_for_long_running_tests):
366366

367367

368368
def test_linode_resize_with_class(
369-
test_linode_client, create_linode_for_long_running_tests
369+
test_linode_client, create_linode_for_long_running_tests
370370
):
371371
linode = create_linode_for_long_running_tests
372372
ltype = Type(test_linode_client, "g6-standard-6")
@@ -390,8 +390,8 @@ def test_linode_resize_with_class(
390390

391391
@pytest.mark.flaky(reruns=3, reruns_delay=2)
392392
def test_linode_resize_with_migration_type(
393-
test_linode_client,
394-
create_linode_for_long_running_tests,
393+
test_linode_client,
394+
create_linode_for_long_running_tests,
395395
):
396396
linode = create_linode_for_long_running_tests
397397
m_type = MigrationType.WARM
@@ -470,12 +470,12 @@ def test_linode_with_disk_encryption_disabled(linode_with_disk_encryption):
470470

471471
assert linode.disk_encryption == InstanceDiskEncryptionType.disabled
472472
assert (
473-
linode.disks[0].disk_encryption == InstanceDiskEncryptionType.disabled
473+
linode.disks[0].disk_encryption == InstanceDiskEncryptionType.disabled
474474
)
475475

476476

477477
def test_linode_with_block_storage_encryption(
478-
linode_with_block_storage_encryption,
478+
linode_with_block_storage_encryption,
479479
):
480480
linode = linode_with_block_storage_encryption
481481
assert "Block Storage Encryption" in linode.capabilities
@@ -725,10 +725,10 @@ def test_create_vpu(self, test_linode_client, linode_for_vpu_tests):
725725
assert hasattr(linode_for_vpu_tests.specs, "accelerated_devices")
726726

727727
def test_create_vpc(
728-
self,
729-
test_linode_client,
730-
linode_for_network_interface_tests,
731-
create_vpc_with_subnet_and_linode,
728+
self,
729+
test_linode_client,
730+
linode_for_network_interface_tests,
731+
create_vpc_with_subnet_and_linode,
732732
):
733733
vpc, subnet, linode, _ = create_vpc_with_subnet_and_linode
734734

@@ -782,9 +782,9 @@ def test_create_vpc(
782782
assert vpc_ips[0].nat_1_1 == linode.ips.ipv4.public[0].address
783783

784784
def test_update_vpc(
785-
self,
786-
linode_for_network_interface_tests,
787-
create_vpc_with_subnet_and_linode,
785+
self,
786+
linode_for_network_interface_tests,
787+
create_vpc_with_subnet_and_linode,
788788
):
789789
vpc, subnet, linode, _ = create_vpc_with_subnet_and_linode
790790

@@ -845,7 +845,7 @@ def test_reorder(self, linode_for_network_interface_tests):
845845
]
846846

847847
def test_delete_interface_containing_vpc(
848-
self, create_vpc_with_subnet_and_linode
848+
self, create_vpc_with_subnet_and_linode
849849
):
850850
vpc, subnet, linode, _ = create_vpc_with_subnet_and_linode
851851

0 commit comments

Comments
 (0)