Skip to content

Commit

Permalink
go test ./...
Browse files Browse the repository at this point in the history
  • Loading branch information
briansterle committed Jun 23, 2023
1 parent 1512664 commit 30c334f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: go build
run: go build ./...
- name: Run tests
run: go test
run: go test ./...
2 changes: 0 additions & 2 deletions dro_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package drogo

import (
"fmt"
"testing"

"github.com/apache/arrow/go/v12/arrow"
Expand All @@ -27,7 +26,6 @@ func TestCreate(t *testing.T) {
assert.Equal(t, "a", arr.GetValue(0), "should equal string")
assert.Equal(t, "b", arr.GetValue(1), "should equal string")
assert.Equal(t, "c", arr.GetValue(2), "should equal string")
fmt.Println(arr.String())
assert.Equal(t, `["a" "b" "c"]`, arr.String(), "should equal string")
assert.Equal(t, 3, arr.Len(), "should equal length")
assert.Equal(t, String, arr.DataType(), "should equal type")
Expand Down

0 comments on commit 30c334f

Please sign in to comment.