Skip to content

Commit 7718dc1

Browse files
committed
Ensure actually broken
1 parent c1270a0 commit 7718dc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
version: ['1.10', '1.11', '^1.12.0-0', 'nightly']
17+
version: ['^1.12.0-0']
1818
os: [ubuntu-latest, macOS-latest, windows-latest]
1919
arch: [x64]
2020
steps:

test/testsuite/base.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,9 @@ end
399399
end
400400
@test(Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0],
401401
broken=(AT <: Array &&
402-
(v"1.11.0-DEV.727" <= VERSION < v"1.11.0-beta2" || # broken in JuliaLang/julia#51760 & reverted in beta2
403-
v"1.12.0-" <= VERSION < v"1.12.0-DEV.528")
404-
))
402+
VERSION >= v"1.11.0-DEV.727" && # broken in JuliaLang/julia#51760
403+
!(v"1.11-rc1" <= VERSION < v"1.12-")) # reverted in -rc1
404+
)
405405

406406
a = AT(Float32[1.0 0.0 0.0; 2.0 2.0 3.0])
407407
b = reinterpret(reshape, ComplexF32, a)

0 commit comments

Comments
 (0)