Skip to content

Commit a88d12a

Browse files
committed
fix test
1 parent 898d594 commit a88d12a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

main_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
package main
22

33
import (
4-
"github.com/mandoway/seru/reduction"
5-
"github.com/mandoway/seru/reduction/context"
64
"os"
75
"path"
86
"path/filepath"
97
"testing"
8+
9+
"github.com/mandoway/seru/reduction"
10+
"github.com/mandoway/seru/reduction/context"
1011
)
1112

1213
func TestReduction(t *testing.T) {
@@ -16,7 +17,7 @@ func TestReduction(t *testing.T) {
1617

1718
aCtx := context.NewAlgorithmConfig(false, 0, nil)
1819
dir := path.Join("test", "instances", "error", "issue_2246", "v1")
19-
ctx, err := context.NewRunContext("cue", path.Join(dir, "in.cue"), path.Join(dir, "test.sh"), *aCtx)
20+
ctx, err := context.NewRunContext("cue", path.Join(dir, "in.cue"), path.Join(dir, "test.sh"), "", *aCtx)
2021
if err != nil {
2122
t.Fatal(err)
2223
}

0 commit comments

Comments
 (0)