Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for checkObjCount (0.14 seconds)

  1. cmd/object_api_suite_test.go

    				break
    			}
    			for _, obj := range result.Objects {
    				checkObjCount[obj.Name]--
    			}
    			if token == "" {
    				break
    			}
    		}
    		for key, value := range checkObjCount {
    			if value != 0 {
    				t.Errorf("%s: Expected value of objects to be %d, instead found to be %d", instanceType, 0, value)
    			}
    			delete(checkObjCount, key)
    		}
    	}
    }
    
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-29 02:39
    - 34.5K bytes
    - Click Count (0)
Back to Top