1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Use tap instead of tape
Because node-tap is in Debian and tape is not.
Author: Paolo Greppi <paolo.greppi@libpf.com>
Forwarded: not-needed
Index: node-sorted-object/test/tests.js
===================================================================
--- node-sorted-object.orig/test/tests.js
+++ node-sorted-object/test/tests.js
@@ -1,6 +1,6 @@
"use strict";
-var test = require("tape");
+var test = require("tap").test;
var sortedObject = require("..");
test("does not return the same object", function (t) {
|