From d7b498f498681e7e6bbbe29428709a9784cd8e73 Mon Sep 17 00:00:00 2001 From: Petr Mikusek Date: Fri, 2 Mar 2018 19:56:46 +0100 Subject: [PATCH] Fix test dependency assert * github.com/json-iterator/go/assert is non-existent in master * replace with github.com/stretchr/testify/assert --- tinyqueue_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyqueue_test.go b/tinyqueue_test.go index 9d34df4..d3d7418 100644 --- a/tinyqueue_test.go +++ b/tinyqueue_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/json-iterator/go/assert" + "github.com/stretchr/testify/assert" ) type floatValue float64