chore(minErr): replace ngError with minErr

This commit is contained in:
Ken Sheedlo
2013-06-07 18:24:30 -07:00
committed by Igor Minar
parent 908071afbf
commit 003861d2fd
35 changed files with 198 additions and 177 deletions

View File

@@ -15,7 +15,7 @@ describe('$cacheFactory', function() {
it('should complain if the cache id is being reused', inject(function($cacheFactory) {
$cacheFactory('cache1');
expect(function() { $cacheFactory('cache1'); }).
toThrow("[NgErr10] CacheId 'cache1' is already taken!");
toThrow("[$cacheFactory:iid] CacheId 'cache1' is already taken!");
}));