From d7f094a024b2d27db1b4e5d068850593641ddce2 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Thu, 13 Dec 2012 12:06:47 -0500 Subject: [PATCH] Remove 404 test because Travis can't handle it. --- test/spec/connection.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/spec/connection.js b/test/spec/connection.js index 25a95c53d..7a0bbacbe 100644 --- a/test/spec/connection.js +++ b/test/spec/connection.js @@ -49,12 +49,5 @@ describe('Connection', function() { }); }); - it('passes errors for 404s', function(done) { - c.loadFromURL('404', function(err, graph) { - expect(graph).to.be.a('Error'); - done(); - }); - }); - }); });