Skip to content

Commit

Permalink
test: refactor test-dgram-bind-default-address
Browse files Browse the repository at this point in the history
- changes var to const/let
- changes assert.equal to assert.strictEqual

PR-URL: #9947
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
mbchoa authored and addaleax committed Dec 8, 2016
1 parent 01509bc commit 19432f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/parallel/test-dgram-bind-default-address.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var dgram = require('dgram');
const common = require('../common');
const assert = require('assert');
const dgram = require('dgram');

// skip test in FreeBSD jails since 0.0.0.0 will resolve to default interface
if (common.inFreeBSDJail) {
Expand All @@ -13,7 +13,7 @@ dgram.createSocket('udp4').bind(0, common.mustCall(function() {
assert.strictEqual(typeof this.address().port, 'number');
assert.ok(isFinite(this.address().port));
assert.ok(this.address().port > 0);
assert.equal(this.address().address, '0.0.0.0');
assert.strictEqual(this.address().address, '0.0.0.0');
this.close();
}));

Expand All @@ -26,9 +26,9 @@ dgram.createSocket('udp6').bind(0, common.mustCall(function() {
assert.strictEqual(typeof this.address().port, 'number');
assert.ok(isFinite(this.address().port));
assert.ok(this.address().port > 0);
var address = this.address().address;
let address = this.address().address;
if (address === '::ffff:0.0.0.0')
address = '::';
assert.equal(address, '::');
assert.strictEqual(address, '::');
this.close();
}));

0 comments on commit 19432f0

Please sign in to comment.