Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Sep 20, 2018
1 parent dea67a3 commit 3b94546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iteration/iteration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (s *TestIterationRepository) TestCreate() {
// then
require.NoError(t, err)
require.NotEqual(t, uuid.Nil, i.ID, "iteration not created, ID is nil")
// require.True(t, i.CreatedAt.After(time.Now()), "iteration was not created, CreatedAt after Now()?")
require.False(t, i.CreatedAt.After(time.Now()), "iteration was not created, CreatedAt after Now()?")
assert.Equal(t, start, *i.StartAt)
assert.Equal(t, end, *i.EndAt)
assert.Equal(t, name, i.Name)
Expand Down

0 comments on commit 3b94546

Please sign in to comment.