Run benchmarks and fmt in travis (#174)

This commit is contained in:
Thomas Pelletier
2017-06-01 23:55:32 -07:00
committed by GitHub
parent e94d595cd4
commit fe7536c3de
7 changed files with 44 additions and 11 deletions
+3 -4
View File
@@ -1,10 +1,10 @@
package query
import (
"fmt"
"strconv"
"unicode"
"fmt"
"github.com/pelletier/go-toml"
"strconv"
"unicode"
)
// Define tokens
@@ -104,4 +104,3 @@ func isHexDigit(r rune) bool {
(r >= 'a' && r <= 'f') ||
(r >= 'A' && r <= 'F')
}