Skip to content

Commit 94724c2

Browse files
authored
Update NOTICE and a test (#330)
1 parent cbfcbfb commit 94724c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

NOTICE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,8 @@ Apache License
556556
## github.com/docker/docker
557557

558558
* Name: github.com/docker/docker
559-
* Version: v20.10.21
560-
* License: [Apache-2.0](https://github.com/docker/docker/blob/v20.10.21/LICENSE)
559+
* Version: v20.10.24
560+
* License: [Apache-2.0](https://github.com/docker/docker/blob/v20.10.24/LICENSE)
561561

562562
```
563563

pkg/sqlcmd/sqlcmd_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@ func TestExitCodeSetOnError(t *testing.T) {
287287
retcode, err = s.runQuery("RAISERROR (N'Testing!' , 5, 1)")
288288
assert.NoError(t, err, "ExitOnError and ErrorSeverityLevel = 0, Raiserror below 10")
289289
assert.Equal(t, -101, retcode, "ExitOnError and ErrorSeverityLevel = 0, Raiserror below 10")
290-
retcode, err = s.runQuery("RAISERROR (15001, 10, 127)")
290+
retcode, err = s.runQuery("RAISERROR (15002, 10, 127, 'param')")
291291
assert.ErrorIs(t, err, ErrExitRequested, "RAISERROR with state 127")
292-
assert.Equal(t, 15001, retcode, "RAISERROR (15001, 10, 127)")
292+
assert.Equal(t, 15002, retcode, "RAISERROR (15002, 10, 127, 'param')")
293293
}
294294

295295
func TestSqlCmdExitOnError(t *testing.T) {

0 commit comments

Comments
 (0)