Fixed Tests

This commit is contained in:
claudemiro
2015-01-17 08:21:49 -03:00
parent 8def052b9d
commit b93da8ccc8
2 changed files with 6 additions and 16 deletions
-10
View File
@@ -3,13 +3,3 @@
// license that can be found in the LICENSE file.
package main
import "testing"
func Test_New_ID(t *testing.T) {
_, id := newID()
if _, i := newID(); i != id+1 {
t.Errorf("Every call to newID must increment the id by one, got: %s", i)
}
}