Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/dbsql/histogram_sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"strconv"

sq "github.com/Masterminds/squirrel"
"github.com/hyperledger/firefly-common/pkg/config"
"github.com/hyperledger/firefly-common/pkg/fftypes"
"github.com/hyperledger/firefly-common/pkg/i18n"
"github.com/hyperledger-firefly/common/pkg/config"
"github.com/hyperledger-firefly/common/pkg/fftypes"
"github.com/hyperledger-firefly/common/pkg/i18n"
)

// GetChartHistogram executes a collection of queries (one per interval) and builds
Expand Down
20 changes: 10 additions & 10 deletions pkg/dbsql/histogram_sql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

"github.com/DATA-DOG/go-sqlmock"
sq "github.com/Masterminds/squirrel"
"github.com/hyperledger/firefly-common/pkg/config"
"github.com/hyperledger/firefly-common/pkg/fftypes"
"github.com/hyperledger-firefly/common/pkg/config"
"github.com/hyperledger-firefly/common/pkg/fftypes"
"github.com/stretchr/testify/assert"
)

Expand Down Expand Up @@ -81,9 +81,9 @@ func TestBuildHistogramQueriesWithoutTypeOrNamespace(t *testing.T) {
queries := db.buildHistogramQueries(
"mytable",
"created",
"",
"",
"",
"",
"",
"",
i,
5,
)
Expand Down Expand Up @@ -211,9 +211,9 @@ func TestGetChartHistogramNoTypeColumn(t *testing.T) {
ctx,
"hist_table",
"created",
"",
"",
"",
"",
"",
"",
i,
)
assert.NoError(t, err)
Expand Down Expand Up @@ -253,8 +253,8 @@ func TestGetChartHistogramWithTypeColumn(t *testing.T) {
"hist_table",
"created",
"type",
"",
"",
"",
"",
i,
)
assert.NoError(t, err)
Expand Down
Loading