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
This commit is contained in:
Austin Clark 2015-10-22 10:34:09 -06:00
parent 81a6cb9e97
commit b1e9f75e6d

View File

@ -21,7 +21,7 @@ describe('Unit: Constants', function() {
}); });
it('should have an application name', function() { it('should have an application name', function() {
expect(constants.appTitle).toEqual('Example Application'); expect(constants.appTitle).toEqual('StackViz');
}); });
}); });