refactor(ax): normalize interface compliance test names

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Virgil 2026-03-31 14:04:07 +00:00
parent 9dbcc5d184
commit db6bbb650e
2 changed files with 2 additions and 2 deletions

View file

@ -627,7 +627,7 @@ func TestS3_ObjectKey_Good(t *testing.T) {
assert.Equal(t, "pfx/", m2.objectKey(""))
}
func TestS3_InterfaceCompliance(t *testing.T) {
func TestS3_InterfaceCompliance_Good(t *testing.T) {
mock := newMockS3()
m, err := New(Options{Bucket: "bucket", Client: mock})
require.NoError(t, err)

View file

@ -561,7 +561,7 @@ func TestSqlite_NormaliseEntryPath_Good(t *testing.T) {
assert.Equal(t, "", normaliseEntryPath("/"))
}
func TestSqlite_InterfaceCompliance(t *testing.T) {
func TestSqlite_InterfaceCompliance_Good(t *testing.T) {
sqliteMedium := newTestSqliteMedium(t)
var _ interface {