Skip to content

Commit d2b2b0a

Browse files
committed
test: fix flaky decimal.TestSelect
We forgot to increase the timeout [1] when we fixed tests for macos. 1. 521c0c3 (cherry picked from 6cddcd7)
1 parent 403f2c3 commit d2b2b0a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.
1414

1515
### Fixed
1616

17+
- Flaky decimal/TestSelect (#300)
18+
1719
## [1.12.0] - 2023-06-07
1820

1921
The release introduces the ability to gracefully close Connection

decimal/decimal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var isDecimalSupported = false
1919

2020
var server = "127.0.0.1:3013"
2121
var opts = Opts{
22-
Timeout: 500 * time.Millisecond,
22+
Timeout: 5 * time.Second,
2323
User: "test",
2424
Pass: "test",
2525
}

0 commit comments

Comments
 (0)