Skip to content

Commit 61acd35

Browse files
Merge pull request #83 from SciML/format-code-with-juliaformatter
Format code with JuliaFormatter v2.1.5
2 parents cff7bbf + 4bf8196 commit 61acd35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/basic.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ C[1, 1] += 1
7272
StaticArrayInterface.setindex!(A, [2 1 4 5; 2 2 3 6], .., 1)
7373
StaticArrayInterface.setindex!(A, [3 2 6 5; 3 2 6 6], .., 2)
7474

75-
@test StaticArrayInterface.getindex(A, :, :, 1) == [2 1 4 5; 2 2 3 6]
76-
@test StaticArrayInterface.getindex(A, :, :, 2) == [3 2 6 5; 3 2 6 6]
75+
@test StaticArrayInterface.getindex(A,:,:,1) == [2 1 4 5; 2 2 3 6]
76+
@test StaticArrayInterface.getindex(A,:,:,2) == [3 2 6 5; 3 2 6 6]
7777

78-
@test StaticArrayInterface.getindex(A, :, .., 1) == [2 1 4 5; 2 2 3 6]
79-
@test StaticArrayInterface.getindex(A, :, .., 2) == [3 2 6 5; 3 2 6 6]
78+
@test StaticArrayInterface.getindex(A,:,..,1) == [2 1 4 5; 2 2 3 6]
79+
@test StaticArrayInterface.getindex(A,:,..,2) == [3 2 6 5; 3 2 6 6]
8080

8181
StaticArrayInterface.setindex!(A, reshape([3 4; 5 6; 4 5; 6 7], 1, 4, 2), 1, ..)
8282

0 commit comments

Comments
 (0)