Skip to content

ci uses ubuntu-24.04 #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:
name: Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
Expand Down
6 changes: 3 additions & 3 deletions tests/nested-multiple-assertions/expected_results.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
}, {
"name" : "increment-decrement-and-get-balance-pass",
"status" : "pass",
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (deref account))) (swap! account + 10) (is (= 10 (deref account))) (swap! account + -10) (is (= 0 (deref account)))))"
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (clojure.core/deref account))) (swap! account + 10) (is (= 10 (clojure.core/deref account))) (swap! account + -10) (is (= 0 (clojure.core/deref account)))))"
}, {
"name" : "increment-decrement-and-get-balance-fail",
"status" : "fail",
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (deref account))) (swap! account + 10) (is (= 1000 (deref account))) (swap! account + -10) (is (= 0 (deref account)))))",
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (clojure.core/deref account))) (swap! account + 10) (is (= 1000 (clojure.core/deref account))) (swap! account + -10) (is (= 0 (clojure.core/deref account)))))",
"message" : "Expected (= 1000 (clojure.core/deref account)) but got (not (= 1000 10))"
}, {
"name" : "increment-decrement-and-get-balance-error",
"status" : "error",
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (deref account))) (swap! account + 10) (is (= 10 (deref (deref account)))) (swap! account + -10) (is (= 0 (deref account)))))",
"test_code" : "(testing \"Taking money out of the account works\" (let [account (atom 0)] (is (= 0 (clojure.core/deref account))) (swap! account + 10) (is (= 10 (clojure.core/deref (clojure.core/deref account)))) (swap! account + -10) (is (= 0 (clojure.core/deref account)))))",
"message" : "An unexpected error occurred:\njava.lang.ClassCastException: java.lang.Long cannot be cast to java.util.concurrent.Future"
}, {
"name" : "largest-series-tests-pass",
Expand Down