From 0f89383d981d0144c6db92b163edcc545d6b5222 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 9 Apr 2012 11:20:55 -0700 Subject: chore(tests): rename all directive names to the normalized form --- test/ng/directive/ngShowHideSpec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ng/directive/ngShowHideSpec.js') diff --git a/test/ng/directive/ngShowHideSpec.js b/test/ng/directive/ngShowHideSpec.js index 5005274d..ee251dbf 100644 --- a/test/ng/directive/ngShowHideSpec.js +++ b/test/ng/directive/ngShowHideSpec.js @@ -1,6 +1,6 @@ 'use strict'; -describe('ng-show / ng-hide', function() { +describe('ngShow / ngHide', function() { var element; @@ -8,7 +8,7 @@ describe('ng-show / ng-hide', function() { dealoc(element); }); - describe('ng-show', function() { + describe('ngShow', function() { it('should show and hide an element', inject(function($rootScope, $compile) { element = jqLite('
'); element = $compile(element)($rootScope); @@ -30,7 +30,7 @@ describe('ng-show / ng-hide', function() { })); }); - describe('ng-hide', function() { + describe('ngHide', function() { it('should hide an element', inject(function($rootScope, $compile) { element = jqLite('
'); element = $compile(element)($rootScope); -- cgit v1.2.3