Refactor changeset spanning function naming

This commit is contained in:
Sam Wronski
2020-11-05 12:23:45 -08:00
parent 1f697e3792
commit 712eb6d276
2 changed files with 4 additions and 4 deletions

View File

@@ -260,7 +260,7 @@ func TestIsChangesetSpanning(t *testing.T) {
changeset := &Changeset{files: tt.changeset}
result := ChangesetSpanningPathList(changeset, tt.files)
result := changeset.isSpanningPaths(tt.files)
if result != tt.expected {
t.Errorf("got %t, want %t", result, tt.expected)