Use relative imports
This commit is contained in:
parent
ea4ea6f933
commit
ff8f3a412e
9 changed files with 3 additions and 3 deletions
|
|
@ -1,21 +0,0 @@
|
|||
package tai64n
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
/* Testing the essential property of the timestamp
|
||||
* as used by WireGuard.
|
||||
*/
|
||||
func TestMonotonic(t *testing.T) {
|
||||
old := Now()
|
||||
for i := 0; i < 10000; i++ {
|
||||
time.Sleep(time.Nanosecond)
|
||||
next := Now()
|
||||
if !next.After(old) {
|
||||
t.Error("TAI64N, not monotonically increasing on nano-second scale")
|
||||
}
|
||||
old = next
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue