Skip to content

Commit 6cddcd7

Browse files
committed
test: fix flaky decimal.TestSelect
We forgot to increase the timeout [1] when we fixed tests for macos. 1. 521c0c3
1 parent 00a9e43 commit 6cddcd7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.
3232

3333
### Fixed
3434

35+
- Flaky decimal/TestSelect (#300)
36+
3537
## [1.12.0] - 2023-06-07
3638

3739
The release introduces the ability to gracefully close Connection

decimal/decimal_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var isDecimalSupported = false
2121

2222
var server = "127.0.0.1:3013"
2323
var opts = Opts{
24-
Timeout: 500 * time.Millisecond,
24+
Timeout: 5 * time.Second,
2525
User: "test",
2626
Pass: "test",
2727
}

0 commit comments

Comments
 (0)