From ccc303d93c74fd84be515b22e48475b7bf126187 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Wed, 12 Oct 2022 14:23:09 -0400 Subject: [PATCH] Fixed meta test case to account for new relative path resolution --- parser/meta_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/meta_test.go b/parser/meta_test.go index 93428df..bdaeaa1 100644 --- a/parser/meta_test.go +++ b/parser/meta_test.go @@ -10,7 +10,7 @@ func TestMeta (test *testing.T) { `:arf author 'Sasha Koshka' license 'GPLv3' -require '` + filepath.Join(cwd, "./some/local/module") + `' +require '` + filepath.Join(cwd, "../tests/parser/meta/some/local/module") + `' require '/usr/local/include/arf/someLibraryInstalledInStandardLocation' require '/some/absolute/path/to/someModule' ---