Skip to content

Commit 6222445

Browse files
committed
Update linter code
1 parent 4425244 commit 6222445

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/lint/julia/linter.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
# filepath. Note that each provided filepath is resolved relative to the current
2323
# working directory of the calling process.
2424

25-
import Base.Test
25+
import Test
2626
import Lint
2727

2828
# Lint each file separately...
29-
@Base.Test.testset "Lint tests" begin
29+
Test.@testset "Lint tests" begin
3030
for i in 1:length( ARGS )
31-
@Base.Test.test isempty( Lint.lintfile( ARGS[ i ] ) );
31+
Test.@test isempty( Lint.lintfile( ARGS[ i ] ) );
3232
end
3333
end
3434

0 commit comments

Comments
 (0)