Skip to content

Commit

Permalink
Merge pull request robertkrimen#238 from veonik/no-rel-imports
Browse files Browse the repository at this point in the history
Replaced './terst' relative import with qualified name.
  • Loading branch information
stevenh authored Mar 8, 2017
2 parents 6a77b7c + 9c716ad commit 1861f24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parser/lexer_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package parser

import (
"../terst"
"testing"

"github.com/robertkrimen/otto/file"
"github.com/robertkrimen/otto/terst"
"github.com/robertkrimen/otto/token"
)

Expand Down
3 changes: 2 additions & 1 deletion testing_test.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package otto

import (
"./terst"
"errors"
"strings"
"testing"
"time"

"github.com/robertkrimen/otto/terst"
)

func tt(t *testing.T, arguments ...func()) {
Expand Down
2 changes: 1 addition & 1 deletion underscore_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package otto

import (
"./terst"
"testing"

"github.com/robertkrimen/otto/terst"
"github.com/robertkrimen/otto/underscore"
)

Expand Down

0 comments on commit 1861f24

Please sign in to comment.