Skip to content

Commit 4bf8196

Browse files
committed
Format code with JuliaFormatter v2.1.5
Applied JuliaFormatter to ensure consistent code formatting across the codebase. This includes formatting improvements to test files for better readability and consistency. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent cff7bbf commit 4bf8196

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)