Skip to content

Commit f291443

Browse files
committed
removed node 0.8.x from travis
1 parent e6d4423 commit f291443

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
22
node_js:
3-
- '0.8'
43
- '0.10'
54
- '0.12'
65
- 'iojs-v1.3'

test/tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ describe("NodeRSA", function(){
442442
var key2 = null;
443443
var suit = dataBundle[i];
444444

445-
it("`encrypt()` by browser" + i, function () {
445+
it("`encrypt()` by browser " + i, function () {
446446
var key = generatedKeys[Math.round(Math.random() * 1000) % generatedKeys.length].exportKey();
447447
key1 = new NodeRSA(key, {environment: 'browser'});
448448
key2 = new NodeRSA(key, {environment: 'node'});
@@ -451,7 +451,7 @@ describe("NodeRSA", function(){
451451
assert(encrypted[i].length > 0);
452452
});
453453

454-
it("`decrypt()` by node" + i, function () {
454+
it("`decrypt()` by node " + i, function () {
455455
decrypted[i] = key2.decrypt(encrypted[i], _.isArray(suit.encoding) ? suit.encoding[0] : suit.encoding);
456456
if (Buffer.isBuffer(decrypted[i])) {
457457
assert.equal(suit.data.toString('hex'), decrypted[i].toString('hex'));

0 commit comments

Comments
 (0)