Skip to content

Commit 27bd715

Browse files
committed
Fix tests
1 parent 5b4d245 commit 27bd715

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,8 @@ julia> Pkg.add("ITensors")
1919

2020
````julia
2121
using ITensors: ITensors, ITensor, Index
22-
````
23-
24-
TODO: This should be `TensorAlgebra.qr`.
25-
26-
````julia
2722
using LinearAlgebra: qr
28-
using NamedDimsArrays: NamedDimsArray, aligndims, dimnames, name, unname
23+
using NamedDimsArrays: aligndims, unname
2924
using Test: @test
3025
i = Index(2)
3126
j = Index(2)

examples/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[deps]
2-
ITensorBase = "4795dd04-0d67-49bb-8f44-b89c448a1dc7"
32
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
43
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
54
NamedDimsArrays = "60cbd0c0-df58-4cb7-918c-6f5607b73fde"

examples/README.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ julia> Pkg.add("ITensors")
2020
# ## Examples
2121

2222
using ITensors: ITensors, ITensor, Index
23-
# TODO: This should be `TensorAlgebra.qr`.
2423
using LinearAlgebra: qr
25-
using NamedDimsArrays: NamedDimsArray, aligndims, dimnames, name, unname
24+
using NamedDimsArrays: aligndims, unname
2625
using Test: @test
2726
i = Index(2)
2827
j = Index(2)

test/test_aqua.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ using Aqua: Aqua
33
using Test: @testset
44

55
@testset "Code quality (Aqua.jl)" begin
6-
Aqua.test_all(ITensors; persistent_tasks=false)
6+
Aqua.test_all(ITensors; persistent_tasks=false, ambiguities=false)
77
end

0 commit comments

Comments
 (0)