summaryrefslogtreecommitdiffstats
path: root/transform/chain_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'transform/chain_test.go')
-rw-r--r--transform/chain_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/transform/chain_test.go b/transform/chain_test.go
index a8d59f902..af3ae61d6 100644
--- a/transform/chain_test.go
+++ b/transform/chain_test.go
@@ -18,7 +18,7 @@ import (
"strings"
"testing"
- "github.com/stretchr/testify/assert"
+ qt "github.com/frankban/quicktest"
)
func TestChainZeroTransformers(t *testing.T) {
@@ -64,6 +64,7 @@ func TestChaingMultipleTransformers(t *testing.T) {
}
func TestNewEmptyTransforms(t *testing.T) {
+ c := qt.New(t)
transforms := NewEmpty()
- assert.Equal(t, 20, cap(transforms))
+ c.Assert(cap(transforms), qt.Equals, 20)
}