Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CombinedOutputLog (0.18 sec)

  1. pkg/volume/git_repo/git_repo_test.go

    	for _, expected := range expecteds {
    		expectedCmds = append(expectedCmds, expected.cmd)
    	}
    	if !reflect.DeepEqual(expectedCmds, fcmd.CombinedOutputLog) {
    		allErrs = append(allErrs,
    			fmt.Errorf("unexpected commands: %v, expected: %v", fcmd.CombinedOutputLog, expectedCmds))
    	}
    
    	var expectedPaths []string
    	for _, expected := range expecteds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/proxy/conntrack/conntrack_test.go

    	// only possibilities here are that we ran 1 command or we ran 0.
    	if ct.execer.(*fakeexec.FakeExec).CommandCalls != 1 {
    		return ""
    	}
    	return strings.Join(ct.fcmd.CombinedOutputLog[0], " ")
    }
    
    func TestExec(t *testing.T) {
    	testCases := []struct {
    		args      []string
    		result    fakeexec.FakeAction
    		expectErr bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top