diff --git a/src/FilePathsBase.jl b/src/FilePathsBase.jl index 1d4208c..37a2005 100644 --- a/src/FilePathsBase.jl +++ b/src/FilePathsBase.jl @@ -48,7 +48,6 @@ export @p_str, @__PATH__, @__FILEPATH__, - @LOCAL, # Constants READ, diff --git a/test/path.jl b/test/path.jl index 1c38cf0..8171e0a 100644 --- a/test/path.jl +++ b/test/path.jl @@ -83,7 +83,7 @@ cd(abs(parent(Path(@__FILE__)))) do @test @__PATH__() == Path(@__DIR__) @test @__FILEPATH__() == Path(@__FILE__) - @test @LOCAL("foo.txt") == join(@__PATH__, "foo.txt") + @test FilePathsBase.@LOCAL("foo.txt") == join(@__PATH__, "foo.txt") end end