File: 00-better-assert.diff

package info (click to toggle)
node-has-binary 0.1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: makefile: 7
file content (16 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Replace dependency from better-assert with assert.
Forwarded: not-needed
Author: Paolo Greppi <paolo.greppi@libpf.com>

Index: node-has-binary/test.js
===================================================================
--- node-has-binary.orig/test.js
+++ node-has-binary/test.js
@@ -1,6 +1,6 @@
 
 var hasBinary = require('./');
-var assert = require('better-assert');
+var assert = require('assert');
 var fs = require('fs');
 
 describe('has-binarydata', function(){