mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-03 20:40:26 -05:00
Merge pull request #136661 from atombrella/feature/fix_test_TestContainerMapCloneUnshared
Fix typo in `TestContainerMapCloneUnshared`
This commit is contained in:
commit
ff38eebb98
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ func TestContainerMapCloneUnshared(t *testing.T) {
|
|||
// check the original copy didn't change
|
||||
// early sanity check, random ID, no special meaning
|
||||
podUIDRedo, containerNameRedo, err2 := cm.GetContainerRef("fakeContainerID-C")
|
||||
if err != nil {
|
||||
if err2 != nil {
|
||||
t.Fatalf("unexpected error: %v", err2)
|
||||
}
|
||||
if podUIDRedo != "fakePodUID-2" || containerNameRedo != "fakeContainerName-c2" {
|
||||
|
|
|
|||
Loading…
Reference in a new issue