Skip to content

Commit

Permalink
test: fix flaky decimal.TestSelect
Browse files Browse the repository at this point in the history
We forgot to increase the timeout [1] when we fixed tests for macos.

1. 521c0c3
  • Loading branch information
oleg-jukovec committed Jun 14, 2023
1 parent 00a9e43 commit 6cddcd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.

### Fixed

- Flaky decimal/TestSelect (#300)

## [1.12.0] - 2023-06-07

The release introduces the ability to gracefully close Connection
Expand Down
2 changes: 1 addition & 1 deletion decimal/decimal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var isDecimalSupported = false

var server = "127.0.0.1:3013"
var opts = Opts{
Timeout: 500 * time.Millisecond,
Timeout: 5 * time.Second,
User: "test",
Pass: "test",
}
Expand Down

0 comments on commit 6cddcd7

Please sign in to comment.