Skip to content

Commit 320d5c3

Browse files
committed
Minor debugging / cleanup chores
Signed-off-by: apostasie <[email protected]>
1 parent d7adf39 commit 320d5c3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cmd/nerdctl/image/image_inspect_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ func TestImageInspectSimpleCases(t *testing.T) {
3333
nerdtest.Setup()
3434

3535
testCase := &test.Case{
36-
Description: "TestImageInspect",
3736
Setup: func(data test.Data, helpers test.Helpers) {
3837
helpers.Ensure("pull", testutil.CommonImage)
3938
},

cmd/nerdctl/ipfs/ipfs_compose_linux_test.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ func TestIPFSCompNoBuild(t *testing.T) {
7171
if ipfsRegistry != nil {
7272
ipfsRegistry.Cleanup(data, helpers)
7373
}
74-
// Speeding up repeat tests...
7574
helpers.Anyhow("rmi", "-f", testutil.WordpressImage)
7675
helpers.Anyhow("rmi", "-f", testutil.MariaDBImage)
7776
}
@@ -91,13 +90,15 @@ func subtestTestIPFSCompNoB(t *testing.T, stargz bool, byAddr bool) *test.Case {
9190

9291
testCase.Description += "with"
9392

94-
if stargz {
95-
testCase.Description += "-stargz"
93+
if !stargz {
94+
testCase.Description += "-no"
9695
}
96+
testCase.Description += "-stargz"
9797

98-
if byAddr {
99-
testCase.Description += "-byAddr"
98+
if !byAddr {
99+
testCase.Description += "-no"
100100
}
101+
testCase.Description += "-byAddr"
101102

102103
if stargz {
103104
testCase.Require = nerdtest.Stargz

0 commit comments

Comments
 (0)