cmd/commands: export StripPrefix

This commit is contained in:
Oliver Gugger
2024-05-02 14:38:13 +02:00
parent efbaf90caf
commit c5973aa136
4 changed files with 7 additions and 7 deletions

View File

@@ -111,7 +111,7 @@ func TestStripPrefix(t *testing.T) {
t.Parallel()
for _, test := range stripPrefixTests {
actual := stripPrefix(test.in)
actual := StripPrefix(test.in)
require.Equal(t, test.expected, actual)
}
}