Skip to content

Commit 637f2e2

Browse files
committed
fix: add missing parameter to test
1 parent 73ea136 commit 637f2e2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type Profile struct {
3535
Push map[string]any `yaml:"push,omitempty"`
3636
Rebase map[string]any `yaml:"rebase,omitempty"`
3737
Rerere map[string]any `yaml:"rerere,omitempty"`
38-
Pager map[string]any `yaml:"pager,omitempty"`
38+
Pager map[string]any `yaml:"pager,omitempty"`
3939
Tag map[string]any `yaml:"tag,omitempty"`
4040
URL []URLConfig `yaml:"url,omitempty"`
4141
User UserConfig `yaml:"user,omitempty"`

internal/config/sections_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ func TestConfigSections(t *testing.T) {
262262
"gpg": true,
263263
"pull": true,
264264
"rerere": true,
265+
"pager": true,
265266
"column": true,
266267
"branch": true,
267268
"init": true,

0 commit comments

Comments
 (0)