8000 test($route): fix test names · uicoded/angular.js@93552fe · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

Lines changed: 2 additions & 2 deletions
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)
0