pull/3285/head
Nicholas Goozeff 2018-10-31 11:18:03 +01:00
parent 3ea3bb1c92
commit e5da4db3a6
1 changed files with 7 additions and 7 deletions

View File

@ -6,16 +6,16 @@ import (
"testing"
)
func assert_NotNil(t *testing.T, i interface {}) {
if (i == nil) {
t.Error("Value should not be nil")
}
func assert_NotNil(t *testing.T, i interface{}) {
if i == nil {
t.Error("Value should not be nil")
}
}
func assert_NotEqual(t *testing.T, lhs uint32, rhs uint32, message string) {
if (lhs == rhs) {
t.Errorf("Value %d should not be %d. %s", lhs, rhs, message)
}
if lhs == rhs {
t.Errorf("Value %d should not be %d. %s", lhs, rhs, message)
}
}
func TestDir2DirTimestamp(t *testing.T) {