Skip to content

Commit 956eb08

Browse files
committed
Format
1 parent b0bdc61 commit 956eb08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/test_gradedarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ const elts = (Float32, Float64, Complex{Float32}, Complex{Float64})
411411
D = conj.(A) .- B ./ β
412412
@test Array(D) conj.(Array(A)) .- Array(B) ./ β
413413
@test axes(D) == axes(A)
414-
Dₗ = linearbroadcasted(+, linearbroadcasted(conj, A), linearbroadcasted(*, -1/β, B))
414+
Dₗ = linearbroadcasted(+, linearbroadcasted(conj, A), linearbroadcasted(*, -1 / β, B))
415415
@test TensorAlgebra.iscall(Dₗ)
416416
@test Array(copy(Dₗ)) conj.(Array(A)) .- Array(B) ./ β
417417
@test axes(Dₗ) == axes(A)

test/test_tensoralgebraext.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ using GradedArrays: GradedArray, GradedMatrix, SU2, SectorArray, SectorDelta, U1
44
flip, gradedrange, isdual, sector, sector_type, sectorrange, trivial,
55
trivial_gradedrange,
66
using Random: randn!
7-
using TensorAlgebra: TensorAlgebra, FusionStyle, contract,
8-
matricize, tensor_product_axis, trivial_axis, unmatricize
7+
using TensorAlgebra: TensorAlgebra, FusionStyle, contract, matricize, tensor_product_axis,
8+
trivial_axis, unmatricize
99
using Test: @test, @test_throws, @testset
1010

1111
function randn_blockdiagonal(elt::Type, axes::Tuple)

0 commit comments

Comments
 (0)