We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38371e9 commit 1b7bb33Copy full SHA for 1b7bb33
git_sizer_test.go
@@ -287,7 +287,7 @@ func TestSubmodule(t *testing.T) {
287
addFile(t, submPath, submRepo, "submfile2.txt", "Hello again, submodule!\n")
288
addFile(t, submPath, submRepo, "submfile3.txt", "Hello again, submodule!\n")
289
290
- cmd = gitCommand(t, submRepo, "commit", "-m", "main initial")
+ cmd = gitCommand(t, submRepo, "commit", "-m", "subm initial")
291
addAuthorInfo(cmd, ×tamp)
292
require.NoError(t, cmd.Run(), "creating subm commit")
293
@@ -298,7 +298,7 @@ func TestSubmodule(t *testing.T) {
298
require.NoError(t, err, "initializing main Repository object")
299
addFile(t, mainPath, mainRepo, "mainfile.txt", "Hello, main!\n")
300
301
- cmd = gitCommand(t, mainRepo, "commit", "-m", "subm initial")
+ cmd = gitCommand(t, mainRepo, "commit", "-m", "main initial")
302
303
require.NoError(t, cmd.Run(), "creating main commit")
304
0 commit comments