Prettier fixes
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
var tape = require("tape")
|
||||
var tape = require("tape");
|
||||
|
||||
var uniqueid = require("../../lib/uniqueid.js")
|
||||
var uniqueid = require("../../lib/uniqueid.js");
|
||||
|
||||
tape("test uniqueid", function(t) {
|
||||
var a = uniqueid()
|
||||
var b = uniqueid()
|
||||
var a = uniqueid();
|
||||
var b = uniqueid();
|
||||
|
||||
t.notEqual(a,b,"Two calls to uniqueid produce different values")
|
||||
t.notEqual(a, b, "Two calls to uniqueid produce different values");
|
||||
|
||||
t.end()
|
||||
})
|
||||
t.end();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user