Skip to content

Commit ec12826

Browse files
pityonlinestapelberg
authored andcommitted
fix missing variables (#96)
1 parent bcfd5bf commit ec12826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func TestAcceptInput(t *testing.T) {
1717
for _, tt := range shortName {
1818
in := normalizeDebianProgramName(tt.in)
1919
if in != tt.out {
20-
t.Errorf("userInput(%q) => %q, want %q", tt.in, tt.out)
20+
t.Errorf("userInput(%q) => %q, want %q", tt.in, in, tt.out)
2121
}
2222
}
2323
}
@@ -39,7 +39,7 @@ func TestNormalizeDebianProgramName(t *testing.T) {
3939
for _, tt := range miscName {
4040
s := normalizeDebianProgramName(tt.in)
4141
if s != tt.out {
42-
t.Errorf("normalizeDebianProgramName(%q) => %q, want %q", tt.in, tt.out)
42+
t.Errorf("normalizeDebianProgramName(%q) => %q, want %q", tt.in, s, tt.out)
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)