Skip to content

Commit b39628a

Browse files
committed
fixup! Make some progress...
1 parent e1cbf82 commit b39628a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

cli/templatepull_test.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,12 @@ func TestTemplatePull(t *testing.T) {
194194
pty.ExpectMatch("not empty")
195195
pty.WriteLine("no")
196196

197-
require.NoError(t, <-errChan)
197+
require.Error(t, <-errChan)
198+
199+
ents, err := os.ReadDir(conflictDest)
200+
require.NoError(t, err)
201+
202+
require.Len(t, ents, 1, "conflict folder should have single conflict file")
198203
})
199204
}
200205

0 commit comments

Comments
 (0)