Skip to content

Commit

Permalink
fix: lint and format
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Feb 16, 2024
1 parent ca0baa4 commit c838c18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ def test_load_tip_length(
decoy.when(calibration_storage.helpers.hash_labware_def(tip_rack_dict)).then_return(
"asdfghjk"
)
decoy.when(calibration_storage.helpers.uri_from_definition(tip_rack_dict)).then_return(
"def456"
)
decoy.when(
calibration_storage.helpers.uri_from_definition(tip_rack_dict)
).then_return(LabwareUri("def456"))

result = subject.load_tip_length_for_pipette(
pipette_id="abc123", tiprack=tip_rack_definition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ def test_access_tip_length_calibration(api_client, set_up_tip_length_temp_direct
assert resp.json()["data"] == []


def test_delete_tip_length_calibration(
api_client, set_up_tip_length_temp_directory
):
def test_delete_tip_length_calibration(api_client, set_up_tip_length_temp_directory):
resp = api_client.delete(
f"/calibration/tip_length?pipette_id={FAKE_PIPETTE_ID}&"
f"tiprack_uri={WRONG_LW_HASH}"
Expand Down

0 comments on commit c838c18

Please sign in to comment.