Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Philip Dubé <[email protected]>
  • Loading branch information
Amogh-Bharadwaj and serprex authored Dec 2, 2024
1 parent f356b3d commit e632431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/e2e/clickhouse/peer_flow_ch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ func (s ClickHouseSuite) Test_Unbounded_Numeric_Without_FF() {
require.Len(s.t, row, 1, "expected 1 column")
c, ok := row[0].Value().(decimal.Decimal)
require.True(s.t, ok, "expected unbounded NUMERIC to be Decimal")
require.Equal(s.t, strings.Repeat("9", 78), c.String(), "expected unbounded NUMERIC to be 75 9s")
require.Equal(s.t, strings.Repeat("9", 75), c.String(), "expected unbounded NUMERIC to be 75 9s")
}

env.Cancel()
Expand Down

0 comments on commit e632431

Please sign in to comment.