File: 00-use-tap-instead-of-tape.diff

package info (click to toggle)
node-sorted-object 2.0.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 120 kB
  • sloc: javascript: 45; makefile: 4; sh: 2
file content (17 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (3)
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) {