Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 93552fe

Browse files
gkalpakpkozlowski-opensource
authored andcommitted
test($route): fix test names
1 parent b5fbd6a commit 93552fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ngRoute/routeSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,13 @@ describe('$route', function() {
326326
expect($route.current).toBeUndefined();
327327
}));
328328

329-
it('matches literal *', inject(function($route, $location, $rootScope) {
329+
it('matches literal .', inject(function($route, $location, $rootScope) {
330330
$location.path('/$testX23/foo*(bar)/222');
331331
$rootScope.$digest();
332332
expect($route.current).toBeUndefined();
333333
}));
334334

335-
it('matches literal .', inject(function($route, $location, $rootScope) {
335+
it('matches literal *', inject(function($route, $location, $rootScope) {
336336
$location.path('/$test.23/foooo(bar)/222');
337337
$rootScope.$digest();
338338
expect($route.current).toBeUndefined();

0 commit comments

Comments
 (0)