Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] authored and smoelius committed Apr 30, 2024
1 parent a2b0dd8 commit c73741f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions necessist/tests/third_party_tests/1/minio.stdout
Original file line number Diff line number Diff line change
Expand Up @@ -3901,7 +3901,9 @@ $DIR/cmd/erasure-metadata_test.go: `.Unix(1603863445, 0)`
$DIR/cmd/erasure-metadata_test.go: `.Unix(1603863445, 0)`
$DIR/cmd/erasure-metadata_test.go: `t.Run("", func(t *testing.T) {
fi, err := findFileInfoInQuorum(context.Background(), test.fis, test.modTime, "", test.expectedQuorum)
if err != test.expectedErr {
_, ok1 := err.(InsufficientReadQuorum)
_, ok2 := test.expectedErr.(InsufficientReadQuorum)
if ok1 != ok2 {
t.Errorf("Expected %s, got %s", test.expectedErr, err)
}
if test.succmodTimes != nil {
Expand All @@ -3915,7 +3917,9 @@ $DIR/cmd/erasure-metadata_test.go: `t.Run("", func(t *testing.T) {
})`
$DIR/cmd/erasure-metadata_test.go: `.Run("", func(t *testing.T) {
fi, err := findFileInfoInQuorum(context.Background(), test.fis, test.modTime, "", test.expectedQuorum)
if err != test.expectedErr {
_, ok1 := err.(InsufficientReadQuorum)
_, ok2 := test.expectedErr.(InsufficientReadQuorum)
if ok1 != ok2 {
t.Errorf("Expected %s, got %s", test.expectedErr, err)
}
if test.succmodTimes != nil {
Expand Down Expand Up @@ -5970,9 +5974,9 @@ $DIR/cmd/net_test.go: `.CreateStringSet("127.0.0.1")`
$DIR/cmd/net_test.go: `.expectedIPList.Intersection(ipList)`
$DIR/cmd/net_test.go: `.IsEmpty()`
$DIR/cmd/net_test.go: `.CreateStringSet("127.0.0.1")`
$DIR/cmd/net_test.go: `.CreateStringSet("93.184.216.34")`
$DIR/cmd/net_test.go: `.expectedIPList.Intersection(ipList)`
$DIR/cmd/net_test.go: `.IsEmpty()`
$DIR/cmd/net_test.go: `.ToSlice()`
$DIR/cmd/net_test.go: `.expectedIPList.Contains(ip)`
$DIR/cmd/net_test.go: `found = true`
$DIR/cmd/net_test.go: `globalMinioHost, globalMinioPort = host, port`
$DIR/cmd/net_test.go: `globalMinioHost, globalMinioPort = testCase.host, testCase.port`
$DIR/cmd/net_test.go: `.CreateStringSet(apiEndpoints...)`
Expand Down
2 changes: 1 addition & 1 deletion necessist/tests/third_party_tests/1/minio.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://blog.kowalczyk.info/article/9afe3485f2204f1bb43217d70f7b87d4/big-projects-written-in-go.html
url = "https://github.com/minio/minio"
rev = "RELEASE.2024-04-18T19-09-19Z"
rev = "RELEASE.2024-04-28T17-53-50Z"

0 comments on commit c73741f

Please sign in to comment.