Skip to content

Commit 0450722

Browse files
committed
minor fix
1 parent dc17ea9 commit 0450722

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/CD.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
python -m pip install poetry
33+
poetry install
3334
if: ${{ steps.release.outputs.release_created }}
3435

3536
- name: Build the code

tests/services/test_create_label_from_rate_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ def test_create_label_from_rate_id_(self) -> None:
9292
"display_scheme": "label",
9393
}
9494
result = shipengine.create_label_from_rate_id(rate_id="se-799373193", params=params)
95-
self.assertEqual("se-799373193", result["label_id"])
95+
self.assertEqual(result["label_id"], "se-799373193")

0 commit comments

Comments
 (0)