Skip to content

Commit

Permalink
remove use of satori.uuid from test (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
phliar committed Nov 7, 2018
1 parent 9b89feb commit d9713cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Changelog

## v3.4.1 (unreleased)
## v3.4.2 (unreleased)
- Nothing yet

## v3.4.1 (2018-11-07)
- Remove all uses of satori.uuid

## v3.4.0 (2018-10-26)
- CLI: Send Auth header
- Library: send CallerName in header
Expand Down
3 changes: 1 addition & 2 deletions connectors/routing/connector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import (
"sort"
"testing"

"github.com/satori/go.uuid"
"github.com/stretchr/testify/assert"
"github.com/uber-go/dosa"
"github.com/uber-go/dosa/connectors/devnull"
Expand Down Expand Up @@ -1025,7 +1024,7 @@ func createTestData(t *testing.T, rc *Connector, keyGenFunc func(int) string, id
"f1": dosa.FieldValue(keyGenFunc(x)),
"c1": dosa.FieldValue(int64(1)),
"c6": dosa.FieldValue(int32(x)),
"c7": dosa.FieldValue(dosa.UUID(uuid.NewV1().String()))})
"c7": dosa.FieldValue(dosa.NewUUID())})
assert.NoError(t, err)
}
}

0 comments on commit d9713cf

Please sign in to comment.