aboutsummaryrefslogtreecommitdiff
path: root/interpreter/interpreter_test.go
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-07-18 12:34:56 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-07-18 12:34:56 +0100
commit80768470741afed68e871b2198ac6fcbbfcb9eb7 (patch)
tree6f3c61910ed72874f07afa820465ab0e739fe3db /interpreter/interpreter_test.go
parentbcec5e47f7e76964c82e59ddba69b5a03be54a60 (diff)
downloadmicro-lang-80768470741afed68e871b2198ac6fcbbfcb9eb7.tar.gz
micro-lang-80768470741afed68e871b2198ac6fcbbfcb9eb7.zip
Go install won't work anyway with cgit, make the package name nicer
Diffstat (limited to 'interpreter/interpreter_test.go')
-rw-r--r--interpreter/interpreter_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/interpreter/interpreter_test.go b/interpreter/interpreter_test.go
index cab4cf6..ac1ca63 100644
--- a/interpreter/interpreter_test.go
+++ b/interpreter/interpreter_test.go
@@ -5,10 +5,10 @@ import (
"strings"
"testing"
- "git.usebox.net/micro-lang/ast"
- "git.usebox.net/micro-lang/errors"
- "git.usebox.net/micro-lang/parser"
- "git.usebox.net/micro-lang/tokenizer"
+ "usebox.net/micro-lang/ast"
+ "usebox.net/micro-lang/errors"
+ "usebox.net/micro-lang/parser"
+ "usebox.net/micro-lang/tokenizer"
)
func run(input string) (any, error) {