Skip to content

Commit 2410837

Browse files
roypatbchalios
authored andcommitted
test: Remove useless variable assignment
The assigned value was immediately overwritten without ever being read. Signed-off-by: Patrick Roy <[email protected]>
1 parent fc69c33 commit 2410837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/functional/test_cmd_line_start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def test_config_start_and_mmds_with_api(uvm_plain, vm_config_file):
432432
assert response.json() == {}
433433

434434
# Populate MMDS with data.
435-
response = test_microvm.api.mmds.put(**data_store)
435+
test_microvm.api.mmds.put(**data_store)
436436

437437
# Ensure the MMDS contents have been successfully updated.
438438
response = test_microvm.api.mmds.get()

0 commit comments

Comments
 (0)