changing assert

This commit is contained in:
Will Charczuk 2018-04-05 00:36:12 -07:00
parent 7d28470055
commit df14434b6e
39 changed files with 39 additions and 39 deletions

View File

@ -6,7 +6,7 @@ go:
sudo: false sudo: false
before_script: before_script:
- go get -u github.com/blendlabs/go-assert - go get -u github.co/blend/go-sdk/assert
- go get ./... - go get ./...
script: script:

View File

@ -4,7 +4,7 @@ import (
"image/color" "image/color"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
) )

View File

@ -5,7 +5,7 @@ import (
"math" "math"
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestBarChartRender(t *testing.T) { func TestBarChartRender(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"math" "math"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -4,7 +4,7 @@ import (
"math" "math"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestBoxClone(t *testing.T) { func TestBoxClone(t *testing.T) {

View File

@ -8,7 +8,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util" "github.com/wcharczuk/go-chart/util"
) )

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -5,7 +5,7 @@ import (
"image/color" "image/color"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestColorFromHex(t *testing.T) { func TestColorFromHex(t *testing.T) {

View File

@ -3,7 +3,7 @@ package drawing
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
type point struct { type point struct {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestGenerateGridLines(t *testing.T) { func TestGenerateGridLines(t *testing.T) {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestLegend(t *testing.T) { func TestLegend(t *testing.T) {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
) )

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
var ( var (

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util" "github.com/wcharczuk/go-chart/util"
) )

View File

@ -3,7 +3,7 @@ package matrix
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestNew(t *testing.T) { func TestNew(t *testing.T) {

View File

@ -3,7 +3,7 @@ package matrix
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestPoly(t *testing.T) { func TestPoly(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestPieChart(t *testing.T) { func TestPieChart(t *testing.T) {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/matrix" "github.com/wcharczuk/go-chart/matrix"
) )

View File

@ -3,7 +3,7 @@ package seq
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestBuffer(t *testing.T) { func TestBuffer(t *testing.T) {

View File

@ -3,7 +3,7 @@ package seq
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestRange(t *testing.T) { func TestRange(t *testing.T) {

View File

@ -3,7 +3,7 @@ package seq
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestRandomRegression(t *testing.T) { func TestRandomRegression(t *testing.T) {

View File

@ -3,7 +3,7 @@ package seq
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestSequenceEach(t *testing.T) { func TestSequenceEach(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util" "github.com/wcharczuk/go-chart/util"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq" "github.com/wcharczuk/go-chart/seq"
"github.com/wcharczuk/go-chart/util" "github.com/wcharczuk/go-chart/util"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestTextWrapWord(t *testing.T) { func TestTextWrapWord(t *testing.T) {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestGenerateContinuousTicks(t *testing.T) { func TestGenerateContinuousTicks(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestTimeSeriesGetValue(t *testing.T) { func TestTimeSeriesGetValue(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func parse(v string) time.Time { func parse(v string) time.Time {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestMinAndMax(t *testing.T) { func TestMinAndMax(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util" "github.com/wcharczuk/go-chart/util"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
assert "github.com/blendlabs/go-assert" assert "github.co/blend/go-sdk/assert"
) )
func TestValuesValues(t *testing.T) { func TestValuesValues(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
) )

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestXAxisGetTicks(t *testing.T) { func TestXAxisGetTicks(t *testing.T) {

View File

@ -3,7 +3,7 @@ package chart
import ( import (
"testing" "testing"
"github.com/blendlabs/go-assert" "github.co/blend/go-sdk/assert"
) )
func TestYAxisGetTicks(t *testing.T) { func TestYAxisGetTicks(t *testing.T) {