We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc17ea9 commit 0450722Copy full SHA for 0450722
.github/workflows/CD.yml
@@ -30,6 +30,7 @@ jobs:
30
run: |
31
python -m pip install --upgrade pip
32
python -m pip install poetry
33
+ poetry install
34
if: ${{ steps.release.outputs.release_created }}
35
36
- name: Build the code
tests/services/test_create_label_from_rate_id.py
@@ -92,4 +92,4 @@ def test_create_label_from_rate_id_(self) -> None:
92
"display_scheme": "label",
93
}
94
result = shipengine.create_label_from_rate_id(rate_id="se-799373193", params=params)
95
- self.assertEqual("se-799373193", result["label_id"])
+ self.assertEqual(result["label_id"], "se-799373193")
0 commit comments