Skip to content

Commit

Permalink
Correct capitaliation of Sirupsen
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Ekberg committed Aug 21, 2017
1 parent dd12fd4 commit 154241a
Show file tree
Hide file tree
Showing 22 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion api/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"github.com/loadimpact/k6/api/common"
"github.com/loadimpact/k6/api/v1"
"github.com/loadimpact/k6/core"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/urfave/negroni"
)

Expand Down
4 changes: 2 additions & 2 deletions api/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (
"github.com/loadimpact/k6/api/common"
"github.com/loadimpact/k6/core"
"github.com/loadimpact/k6/lib"
log "github.com/sirupsen/logrus"
logtest "github.com/sirupsen/logrus/hooks/test"
log "github.com/Sirupsen/logrus"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
"github.com/urfave/negroni"
)
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

"github.com/ghodss/yaml"
"github.com/shibukawa/configdir"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)

const configFilename = "config.yml"
Expand Down
2 changes: 1 addition & 1 deletion core/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/lib/metrics"
"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"gopkg.in/guregu/null.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion core/engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
"github.com/loadimpact/k6/stats/dummy"
logtest "github.com/sirupsen/logrus/hooks/test"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
"gopkg.in/guregu/null.v3"
)
Expand Down
2 changes: 1 addition & 1 deletion core/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
null "gopkg.in/guregu/null.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion core/local/local_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (

"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
logtest "github.com/sirupsen/logrus/hooks/test"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
null "gopkg.in/guregu/null.v3"
)
Expand Down
2 changes: 1 addition & 1 deletion ctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (

"github.com/loadimpact/k6/api/v1"
"github.com/manyminds/api2go/jsonapi"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"gopkg.in/guregu/null.v3"
"gopkg.in/urfave/cli.v1"
)
Expand Down
2 changes: 1 addition & 1 deletion js/common/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/lib/netext"
"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)

// Provides volatile state for a VU.
Expand Down
2 changes: 1 addition & 1 deletion js/compiler/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/GeertJohan/go.rice"
"github.com/dop251/goja"
"github.com/mitchellh/mapstructure"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion js/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"strconv"

"github.com/dop251/goja"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)

type Console struct {
Expand Down
4 changes: 2 additions & 2 deletions js/console_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (
"github.com/dop251/goja"
"github.com/loadimpact/k6/js/common"
"github.com/loadimpact/k6/lib"
log "github.com/sirupsen/logrus"
logtest "github.com/sirupsen/logrus/hooks/test"
log "github.com/Sirupsen/logrus"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
)
Expand Down
4 changes: 2 additions & 2 deletions js/modules/k6/http/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ import (
"github.com/loadimpact/k6/lib/metrics"
"github.com/loadimpact/k6/lib/netext"
"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
logtest "github.com/sirupsen/logrus/hooks/test"
log "github.com/Sirupsen/logrus"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
null "gopkg.in/guregu/null.v3"
)
Expand Down
2 changes: 1 addition & 1 deletion js/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (
"github.com/loadimpact/k6/lib/metrics"
"github.com/loadimpact/k6/lib/netext"
"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/spf13/afero"
"github.com/viki-org/dnscache"
"golang.org/x/net/http2"
Expand Down
2 changes: 1 addition & 1 deletion js/runner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/lib/metrics"
"github.com/loadimpact/k6/stats"
logtest "github.com/sirupsen/logrus/hooks/test"
logtest "github.com/Sirupsen/logrus/hooks/test"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
"gopkg.in/guregu/null.v3"
Expand Down
2 changes: 1 addition & 1 deletion lib/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"time"

"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
null "gopkg.in/guregu/null.v3"
)

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

"github.com/loadimpact/k6/lib"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/spf13/afero"
)

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

"github.com/fatih/color"
"github.com/mattn/go-isatty"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"gopkg.in/urfave/cli.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion run.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import (
"github.com/loadimpact/k6/stats/json"
"github.com/loadimpact/k6/ui"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/spf13/afero"
"gopkg.in/guregu/null.v3"
"gopkg.in/urfave/cli.v1"
Expand Down
2 changes: 1 addition & 1 deletion stats/cloud/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
"github.com/mitchellh/mapstructure"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion stats/influxdb/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
"github.com/loadimpact/k6/ui"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
null "gopkg.in/guregu/null.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion stats/json/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (

"github.com/loadimpact/k6/lib"
"github.com/loadimpact/k6/stats"
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/spf13/afero"
)

Expand Down

0 comments on commit 154241a

Please sign in to comment.