From d39a4941314d1a25d1708ed49552478e0c46192c Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Mon, 4 Mar 2019 23:39:33 +0100 Subject: [PATCH] refactor: better name for 404 --- test/unit/api/basic_system.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/api/basic_system.spec.js b/test/unit/api/basic_system.spec.js index 4a84d549a..93dc43c42 100644 --- a/test/unit/api/basic_system.spec.js +++ b/test/unit/api/basic_system.spec.js @@ -40,9 +40,9 @@ describe('basic system test', () => { }); }); - test('server should respond on /whatever', done => { + test('server should respond on /___not_found_package', done => { request({ - url: `http://localhost:${port}/whatever`, + url: `http://localhost:${port}/___not_found_package`, }, function(err, res, body) { expect(err).toBeNull(); expect(body).toMatch(API_ERROR.NO_PACKAGE);