Skip to content

Commit

Permalink
changing assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Charczuk committed Apr 5, 2018
1 parent 7d28470 commit df14434
Show file tree
Hide file tree
Showing 39 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ go:
sudo: false

before_script:
- go get -u github.com/blendlabs/go-assert
- go get -u github.co/blend/go-sdk/assert
- go get ./...

script:
Expand Down
2 changes: 1 addition & 1 deletion annotation_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"image/color"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing"
)

Expand Down
2 changes: 1 addition & 1 deletion bar_chart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math"
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestBarChartRender(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion bollinger_band_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion box_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"math"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestBoxClone(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion chart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing"
"github.com/wcharczuk/go-chart/seq"
)
Expand Down
2 changes: 1 addition & 1 deletion concat_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion continuous_range_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util"
)

Expand Down
2 changes: 1 addition & 1 deletion continuous_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion drawing/color_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"image/color"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestColorFromHex(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion drawing/curve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package drawing
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

type point struct {
Expand Down
2 changes: 1 addition & 1 deletion ema_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion grid_line_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestGenerateGridLines(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion histogram_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion legend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestLegend(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion linear_regression_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
)

Expand Down
2 changes: 1 addition & 1 deletion macd_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion market_hours_range_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util"
)

Expand Down
2 changes: 1 addition & 1 deletion matrix/matrix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package matrix
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestNew(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion matrix/regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package matrix
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestPoly(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pie_chart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestPieChart(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion polynomial_regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/matrix"
)

Expand Down
2 changes: 1 addition & 1 deletion seq/buffer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package seq
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestBuffer(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion seq/linear_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package seq
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestRange(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion seq/random_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package seq
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestRandomRegression(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion seq/sequence_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package seq
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestSequenceEach(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion seq/time_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util"
)

Expand Down
2 changes: 1 addition & 1 deletion sma_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/seq"
"github.com/wcharczuk/go-chart/util"
)
Expand Down
2 changes: 1 addition & 1 deletion style_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/drawing"
)
Expand Down
2 changes: 1 addition & 1 deletion text_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestTextWrapWord(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion tick_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestGenerateContinuousTicks(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion time_series_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestTimeSeriesGetValue(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion util/date_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func parse(v string) time.Time {
Expand Down
2 changes: 1 addition & 1 deletion util/math_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestMinAndMax(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion value_formatter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/util"
)

Expand Down
2 changes: 1 addition & 1 deletion value_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

assert "github.com/blendlabs/go-assert"
assert "github.co/blend/go-sdk/assert"
)

func TestValuesValues(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion vector_renderer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/drawing"
)

Expand Down
2 changes: 1 addition & 1 deletion xaxis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestXAxisGetTicks(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion yaxis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chart
import (
"testing"

"github.com/blendlabs/go-assert"
"github.co/blend/go-sdk/assert"
)

func TestYAxisGetTicks(t *testing.T) {
Expand Down

0 comments on commit df14434

Please sign in to comment.