Skip to content

Commit 37834a9

Browse files
Fixed boot_size in unit tests
1 parent 158df5c commit 37834a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/unit/linode_client_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def test_instance_create_with_boot_size(self):
787787
"us-east-1a",
788788
image="linode/debian9",
789789
root_pass="aComplex@Password123",
790-
boot_size=5000,
790+
boot_size=8192,
791791
)
792792

793793
self.assertIsNotNone(l)
@@ -802,7 +802,7 @@ def test_instance_create_with_boot_size(self):
802802
"type": "g6-standard-1",
803803
"image": "linode/debian9",
804804
"root_pass": "aComplex@Password123",
805-
"boot_size": 5000,
805+
"boot_size": 8192,
806806
},
807807
)
808808

@@ -817,7 +817,7 @@ def test_instance_create_with_kernel_and_boot_size(self):
817817
image="linode/debian9",
818818
root_pass="aComplex@Password123",
819819
kernel="linode/latest-64bit",
820-
boot_size=5000,
820+
boot_size=8192,
821821
)
822822

823823
self.assertIsNotNone(l)
@@ -833,7 +833,7 @@ def test_instance_create_with_kernel_and_boot_size(self):
833833
"image": "linode/debian9",
834834
"root_pass": "aComplex@Password123",
835835
"kernel": "linode/latest-64bit",
836-
"boot_size": 5000,
836+
"boot_size": 8192,
837837
},
838838
)
839839

0 commit comments

Comments
 (0)