aboutsummaryrefslogtreecommitdiff
path: root/compiler/dfa_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/dfa_test.go')
-rw-r--r--compiler/dfa_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dfa_test.go b/compiler/dfa_test.go
index dcf1ae5..a797313 100644
--- a/compiler/dfa_test.go
+++ b/compiler/dfa_test.go
@@ -7,7 +7,7 @@ import (
func TestGenDFA(t *testing.T) {
root, symTab, err := parse(map[int][]byte{
1: []byte("(a|b)*abb"),
- })
+ }, nil)
if err != nil {
t.Fatal(err)
}