Skip to content

Commit c6b5d70

Browse files
authored
Apply suggestions from code review
1 parent 492c335 commit c6b5d70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/activate_set.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
TestEnv.activate("ChainRulesCore")
88
new_project_toml_path = Base.active_project()
99
@test new_project_toml_path != orig_project_toml_path
10-
@test orig_load_path Base.LOAD_PATH
10+
@test orig_load_path == Base.LOAD_PATH
1111

1212
@eval using StaticArrays # From ChainRulesCore [extras] Project.toml
1313
@test isdefined(@__MODULE__, :StaticArrays)
@@ -30,7 +30,7 @@
3030
TestEnv.activate("YAXArrays")
3131
new_project_toml_path = Base.active_project()
3232
@test new_project_toml_path != orig_project_toml_path
33-
@test orig_load_path Base.LOAD_PATH
33+
@test orig_load_path == Base.LOAD_PATH
3434

3535
@eval using CSV
3636
@test isdefined(@__MODULE__, :CSV)
@@ -39,4 +39,4 @@
3939
Pkg.activate(orig_project_toml_path)
4040
end
4141
end
42-
end
42+
end

0 commit comments

Comments
 (0)