Skip to content

Commit

Permalink
upgrade ingestr to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
karakanb committed May 17, 2024
1 parent 0e4a1e8 commit fb7162e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pkg/bigquery/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ func TestCustomCheck(t *testing.T) {
func TestPatternCheck_Check(t *testing.T) {
t.Parallel()

var pattern = "(a|b)"
pattern := "(a|b)"

runTestsFoCountZeroCheck(
t,
Expand Down
2 changes: 1 addition & 1 deletion pkg/ingestr/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

const (
IngestrVersion = "v0.4.0"
IngestrVersion = "v0.4.1"
DockerImage = "ghcr.io/bruin-data/ingestr:" + IngestrVersion
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/mssql/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func TestCustomCheck(t *testing.T) {
func TestPatternCheck_Check(t *testing.T) {
t.Parallel()

var pattern = "(a|b)"
pattern := "(a|b)"

runTestsForCountZeroCheck(
t,
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipeline/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func (ccv *ColumnCheckValue) ToString() string {
return *ccv.String
}
if ccv.Bool != nil {
return fmt.Sprintf("%t", *ccv.Bool)
return strconv.FormatBool(*ccv.Bool)
}

return ""
Expand Down
2 changes: 1 addition & 1 deletion pkg/postgres/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func TestCustomCheck(t *testing.T) {
func TestPatternCheck_Check(t *testing.T) {
t.Parallel()

var pattern = "(a|b)"
pattern := "(a|b)"

runTestsForCountZeroCheck(
t,
Expand Down
2 changes: 1 addition & 1 deletion pkg/snowflake/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func TestCustomCheck(t *testing.T) {
func TestPatternCheck_Check(t *testing.T) {
t.Parallel()

var pattern = "(a|b)"
pattern := "(a|b)"

runTestsForCountZeroCheck(
t,
Expand Down
2 changes: 1 addition & 1 deletion pkg/synapse/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ func TestCustomCheck(t *testing.T) {
func TestPatternCheck_Check(t *testing.T) {
t.Parallel()

var pattern = "(a|b)"
pattern := "(a|b)"

runTestsForCountZeroCheck(
t,
Expand Down

0 comments on commit fb7162e

Please sign in to comment.