Skip to content

Commit 439ea24

Browse files
test: fix running with new crud
After [1], tuple arguments are validated before space validation, so error contents assertion fails. 1. tarantool/crud@6b20c8c
1 parent 7a70686 commit 439ea24

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.
6060
crud.SelectRequest (#320)
6161
- Incorrect options (`vshard_router`, `fields`, `bucket_id`, `mode`,
6262
`prefer_replica`, `balance`) setup for crud.GetRequest (#335)
63+
- Tests with crud 1.4.0 (#336)
6364

6465
## [1.12.0] - 2023-06-07
6566

crud/tarantool_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ var testResultWithErrCases = []struct {
229229
{
230230
"ManyResult",
231231
&crud.Result{},
232-
crud.MakeReplaceManyRequest(invalidSpaceName).Opts(opManyOpts),
232+
crud.MakeReplaceManyRequest(invalidSpaceName).Tuples(tuples).Opts(opManyOpts),
233233
},
234234
{
235235
"NumberResult",

0 commit comments

Comments
 (0)