Skip to content

Commit 2d33fdb

Browse files
authored
Format files using DocumentFormat
1 parent ba611c9 commit 2d33fdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TestItemRunner.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function run_testitem(filepath, use_default_usings, package_name, original_code,
6666
if use_default_usings
6767
Core.eval(mod, :(using Test))
6868

69-
if package_name!=""
69+
if package_name != ""
7070
Core.eval(mod, :(using $(Symbol(package_name))))
7171
end
7272
end
@@ -85,7 +85,7 @@ function run_tests(path)
8585
# Find package name
8686
package_name = ""
8787
package_filename = isfile(joinpath(path, "Project.toml")) ? joinpath(path, "Project.toml") : isfile(joinpath(path, "JuliaProject.toml")) ? joinpath(path, "JuliaProject.toml") : nothing
88-
if package_filename!==nothing
88+
if package_filename !== nothing
8989
try
9090
project_content = TOML.parsefile(package_filename)
9191

0 commit comments

Comments
 (0)