Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Jan 3, 2025
1 parent 3e51965 commit a6beb67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
This release adds Pex `--scie {eager,lazy}` support for Linux ppc64le
and s390x.

* Add support for Linux ppc64le and s390x. (#2635)
* Add `--scie` support for Linux ppc64le and s390x. (#2635)

## 2.27.1

Expand Down
4 changes: 2 additions & 2 deletions tests/integration/scie/test_pex_scie.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def test_specified_science_binary(tmpdir):

local_science_binary = os.path.join(str(tmpdir), "science")
with open(local_science_binary, "wb") as write_fp, URLFetcher().get_body_stream(
"https://github.com/a-scie/lift/releases/download/v0.9.0/{binary}".format(
"https://github.com/a-scie/lift/releases/download/v0.10.0/{binary}".format(
binary=SciePlatform.CURRENT.qualified_binary_name("science")
)
) as read_fp:
Expand Down Expand Up @@ -354,7 +354,7 @@ def test_specified_science_binary(tmpdir):
cached_science_binaries
), "Expected the local science binary to be used but not cached."
assert (
"0.9.0"
"0.10.0"
== subprocess.check_output(args=[local_science_binary, "--version"]).decode("utf-8").strip()
)

Expand Down

0 comments on commit a6beb67

Please sign in to comment.