From b1e9f75e6daf3e8cc75b2aa073210d76593a0265 Mon Sep 17 00:00:00 2001 From: Austin Clark Date: Thu, 22 Oct 2015 10:34:09 -0600 Subject: [PATCH] Fix application name in constants_spec.js The unit test suite was failing due to a test in constants_spec.js that expected the application name (as defined in constants.js) to be "Example Application". This commit changes the expected value in the test to "StackViz". Change-Id: Ia7b97fdaae3560a27d944c81a9a245feafde3252 --- test/unit/constants_spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/constants_spec.js b/test/unit/constants_spec.js index 8fb2a5b..42c5f43 100644 --- a/test/unit/constants_spec.js +++ b/test/unit/constants_spec.js @@ -21,7 +21,7 @@ describe('Unit: Constants', function() { }); it('should have an application name', function() { - expect(constants.appTitle).toEqual('Example Application'); + expect(constants.appTitle).toEqual('StackViz'); }); -}); \ No newline at end of file +});