Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for actualCallCount (0.14 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    	if len(unmounters) == 0 && (expected == 0) {
    		return nil
    	}
    	actualCallCount := 0
    	for _, unmounter := range unmounters {
    		actualCallCount = unmounter.GetTearDownCallCount()
    		if actualCallCount == expected {
    			return nil
    		}
    	}
    	return fmt.Errorf("expected TearDown calls %d, got %d", expected, actualCallCount)
    }
    
    func TestReconstructVolumesMount(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top