File: autopkgtest-compat.diff

package info (click to toggle)
node-json-stable-stringify 1.0.2%2B~cs5.2.34-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 312 kB
  • sloc: javascript: 505; makefile: 5
file content (49 lines) | stat: -rw-r--r-- 1,330 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Description: autopkgtest compat
Author: Xavier Guimard <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2020-11-08

--- a/fast-json-stable-stringify/test/cmp.js
+++ b/fast-json-stable-stringify/test/cmp.js
@@ -1,7 +1,7 @@
 'use strict';
 
 var test = require('tape');
-var stringify = require('../');
+var stringify = require('fast-json-stable-stringify');
 
 test('custom comparison function', function (t) {
     t.plan(1);
--- a/fast-json-stable-stringify/test/nested.js
+++ b/fast-json-stable-stringify/test/nested.js
@@ -1,7 +1,7 @@
 'use strict';
 
 var test = require('tape');
-var stringify = require('../');
+var stringify = require('fast-json-stable-stringify');
 
 test('nested', function (t) {
     t.plan(1);
--- a/fast-json-stable-stringify/test/str.js
+++ b/fast-json-stable-stringify/test/str.js
@@ -1,7 +1,7 @@
 'use strict';
 
 var test = require('tape');
-var stringify = require('../');
+var stringify = require('fast-json-stable-stringify');
 
 test('simple object', function (t) {
     t.plan(1);
--- a/fast-json-stable-stringify/test/to-json.js
+++ b/fast-json-stable-stringify/test/to-json.js
@@ -1,7 +1,7 @@
 'use strict';
 
 var test = require('tape');
-var stringify = require('../');
+var stringify = require('fast-json-stable-stringify');
 
 test('toJSON function', function (t) {
     t.plan(1);