3
0

Minor beauty fixes

This commit is contained in:
Denis Arh
2019-09-10 20:43:08 +02:00
parent 6e24b2d85b
commit 230f2a4c4a
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ func TestApplicationUpdate(t *testing.T) {
a, err := h.repoApplication().FindByID(a.ID)
h.a.NoError(err)
h.a.NotNil(a)
h.a.Equal(a.Name, "changed-name")
h.a.Equal("changed-name", a.Name)
}
func TestApplicationDeleteForbidden(t *testing.T) {

View File

@@ -121,7 +121,7 @@ func TestOrganisationUpdate(t *testing.T) {
a, err := h.repoOrganisation().FindByID(a.ID)
h.a.NoError(err)
h.a.NotNil(a)
h.a.Equal(a.Name, "changed-name")
h.a.Equal("changed-name", a.Name)
}
func TestOrganisationDeleteForbidden(t *testing.T) {