Skip to content

Commit

Permalink
fixed test; learn not to push commits without local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Mar 5, 2020
1 parent 846063d commit c9a9519
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/tensor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ withcache = TensorOperations.use_cache() ? "with" : "without"
op2 = randn(2, 2)
op3 = randn(2, 2)

f(op) = @ncon((op, op3), ([-1 3], [3 -3]))
f(op,op3) = @ncon((op, op3), ([-1 3], [3 -3]))

b = f(op1)
b = f(op1,op3)
bcopy = deepcopy(b)
c = f(op2)
c = f(op2,op3)
@test b == bcopy
@test b != c
end
Expand Down

2 comments on commit c9a9519

@Jutho
Copy link
Owner Author

@Jutho Jutho commented on c9a9519 Mar 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/10588

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v2.1.4 -m "<description of version>" c9a951944c591600f530a59836dc7ea2eb661697
git push origin v2.1.4

Please sign in to comment.