Skip to content

Commit f123b7d

Browse files
authored
TST: Fix test on Julia v1.11. (#155)
1 parent c85b3d5 commit f123b7d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/julia_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix: # use matrix notation for linux for easily testing more versions/architectures
51-
version: [ "1.10.0" ]
51+
version: [ "1.10", "1.11" ]
5252
os: [ubuntu-latest]
5353
arch: ["x64"]
5454
include:
5555
# test macOS and Windows with latest Julia only
5656
- os: macOS-latest
5757
arch: arm64
58-
version: "1.10.0"
58+
version: "1.11"
5959
- os: windows-latest
6060
arch: x64
61-
version: "1.10.0"
61+
version: "1.11"
6262

6363
steps:
6464
- uses: actions/checkout@v4

test/ACSets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ SchLabeledDecGraph′ = BasicSchema([:E,:V], [(:src,:E,:V),(:tgt,:E,:V)],
833833
[:X, :Y], [(:dec,:E,:X),(:label,:V,:Y)])
834834
"""Example Docstring"""
835835
@acset_type SymSymDecGraph(SchLabeledDecGraph′){Symbol,Symbol}
836-
@test strip(string(@doc SymSymDecGraph)) == """Example Docstring"""
836+
@test contains(string(@doc SymSymDecGraph), "Example Docstring")
837837

838838
@acset SymSymDecGraph begin V=1; E=1; src=1; tgt=1; dec=[:a]; label=[:b] end
839839

0 commit comments

Comments
 (0)