Skip to content

Commit 0565525

Browse files
authored
Merge pull request #12 from dfateyev/master
[Update] Change import of "tester" to full path
2 parents 1180ba6 + 38a3759 commit 0565525

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

difflib/bytes/bytes_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"testing"
1212

13-
"../tester"
13+
"github.com/ianbruene/go-difflib/difflib/tester"
1414
)
1515

1616
func assertAlmostEqual(t *testing.T, a, b float64, places int) {

difflib/difflib_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"./tester"
12+
"github.com/ianbruene/go-difflib/difflib/tester"
1313
)
1414

1515
func assertAlmostEqual(t *testing.T, a, b float64, places int) {

0 commit comments

Comments
 (0)