Skip to content

Commit d193d86

Browse files
committed
Fix typos
1 parent 07d40d2 commit d193d86

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/cuda/states.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using Adapt, CUDA
99
tol = Float64(eps(real(elt)) * 100)
1010

1111
ψ = adapt(CuArray, InfiniteMPS([rand(elt, D * d, D), rand(elt, D * d, D)]; tol))
12-
@test TensorKit.storagetype(ψ) = CuVector{ComplexF64}
12+
@test TensorKit.storagetype(ψ) == CuVector{ComplexF64}
1313
@test eltype(ψ) == eltype(typeof(ψ))
1414

1515
for i in 1:length(ψ)
@@ -30,7 +30,7 @@ using Adapt, CUDA
3030

3131
L = rand(3:20)
3232
ψ = adapt(CuArray, FiniteMPS(rand, elt, L, d, D))
33-
@test TensorKit.storagetype(ψ) = CuVector{ComplexF64}
33+
@test TensorKit.storagetype(ψ) == CuVector{ComplexF64}
3434
@test eltype(ψ) == eltype(typeof(ψ))
3535
ovl = dot(ψ, ψ)
3636

0 commit comments

Comments
 (0)