remove test case for next

pull/1059/head
Darien Raymond 2018-04-14 21:15:15 +02:00
parent 67c7d6da4a
commit e5122a4c2d
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 0 additions and 8 deletions

View File

@ -69,11 +69,3 @@ func TestEquals(t *testing.T) {
uuid3 := New() uuid3 := New()
assert(uuid.Equals(&uuid3), IsFalse) assert(uuid.Equals(&uuid3), IsFalse)
} }
func TestNext(t *testing.T) {
assert := With(t)
uuid := New()
uuid2 := uuid.Next()
assert(uuid.Equals(&uuid2), IsFalse)
}