Fixed misspell

This commit is contained in:
kolaente 2017-12-03 18:07:48 +01:00 committed by Konrad
parent d0baadc9c3
commit 9dd0cb18a7
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B

View File

@ -17,7 +17,7 @@ func TestCreateIssueDependency(t *testing.T) {
issue2, err := GetIssueByID(2)
assert.NoError(t, err)
// Create a dependency and check if it was successfull
// Create a dependency and check if it was successful
exists, circular, err := CreateIssueDependency(user1, issue1, issue2)
assert.NoError(t, err)
assert.False(t, exists)
@ -48,7 +48,7 @@ func TestCreateIssueDependency(t *testing.T) {
assert.NoError(t, err)
assert.True(t, left)
// Test removing the depencency
// Test removing the dependency
err = RemoveIssueDependency(user1, issue1, issue2, DependencyTypeBlockedBy)
assert.NoError(t, err)
}