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

Commit e880c8f

Browse files
committed
test($route): fix test names
1 parent e69c180 commit e880c8f

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
@@ -271,13 +271,13 @@ describe('$route', function() {
271271
expect($route.current).toBeUndefined();
272272
}));
273273

274-
it('matches literal *', inject(function($route, $location, $rootScope) {
274+
it('matches literal .', inject(function($route, $location, $rootScope) {
275275
$location.path('/$testX23/foo*(bar)/222');
276276
$rootScope.$digest();
277277
expect($route.current).toBeUndefined();
278278
}));
279279

280-
it('matches literal .', inject(function($route, $location, $rootScope) {
280+
it('matches literal *', inject(function($route, $location, $rootScope) {
281281
$location.path('/$test.23/foooo(bar)/222');
282282
$rootScope.$digest();
283283
expect($route.current).toBeUndefined();

0 commit comments

Comments
 (0)