Skip to content

Commit c5c8394

Browse files
committed
goimports
1 parent f8a398e commit c5c8394

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

bench_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package expr_test
22

33
import (
4+
"testing"
5+
46
"github.com/antonmedv/expr"
57
"github.com/antonmedv/expr/vm"
6-
"testing"
78
)
89

910
func Benchmark_expr(b *testing.B) {

expr.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
package expr
22

33
import (
4+
"reflect"
5+
46
"github.com/antonmedv/expr/checker"
57
"github.com/antonmedv/expr/compiler"
68
"github.com/antonmedv/expr/internal/conf"
79
"github.com/antonmedv/expr/optimizer"
810
"github.com/antonmedv/expr/parser"
911
"github.com/antonmedv/expr/vm"
10-
"reflect"
1112
)
1213

1314
// Eval parses, compiles and runs given input.

expr_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ package expr_test
33
import (
44
"encoding/json"
55
"fmt"
6+
"strings"
7+
"testing"
8+
"time"
9+
610
"github.com/antonmedv/expr"
711
"github.com/antonmedv/expr/vm"
812
"github.com/stretchr/testify/assert"
913
"github.com/stretchr/testify/require"
10-
"strings"
11-
"testing"
12-
"time"
1314
)
1415

1516
func ExampleEval() {

0 commit comments

Comments
 (0)