minor cleanups to comments

This commit is contained in:
ryanfkeepers 2023-02-07 14:16:50 -07:00
parent 43c47d678e
commit 52add8dad6
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ type Stream interface {
Deleted() bool
}
// Locationer provides a LocationPath describing the path with Display Names
// LocationPather provides a LocationPath describing the path with Display Names
// instead of canonical IDs
type LocationPather interface {
LocationPath() path.Path

View File

@ -234,7 +234,7 @@ func (suite *DetailsUnitSuite) TestDetailsModel_Path() {
Entries: test.ents,
},
}
assert.Equal(t, test.expectRepoRefs, d.Paths())
assert.ElementsMatch(t, test.expectRepoRefs, d.Paths())
})
}
}