Fix paths for tests

This commit is contained in:
Alexander Neumann 2017-07-23 14:39:57 +02:00
parent 05500dc5f8
commit 94b27e8933
2 changed files with 2 additions and 2 deletions

View File

@ -1100,7 +1100,7 @@ func TestFindJSON(t *testing.T) {
func TestRebuildIndex(t *testing.T) {
withTestEnvironment(t, func(env *testEnvironment, gopts GlobalOptions) {
datafile := filepath.Join("..", "..", "restic", "checker", "testdata", "duplicate-packs-in-index-test-repo.tar.gz")
datafile := filepath.Join("..", "..", "internal", "checker", "testdata", "duplicate-packs-in-index-test-repo.tar.gz")
SetupTarTestFixture(t, env.base, datafile)
out, err := testRunCheckOutput(gopts)

View File

@ -20,7 +20,7 @@ func TestRestoreLocalLayout(t *testing.T) {
}
for _, test := range tests {
datafile := filepath.Join("..", "..", "restic", "backend", "testdata", test.filename)
datafile := filepath.Join("..", "..", "internal", "backend", "testdata", test.filename)
SetupTarTestFixture(t, env.base, datafile)