aboutsummaryrefslogtreecommitdiffstats
path: root/test/widgetsSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/widgetsSpec.js')
-rw-r--r--test/widgetsSpec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/widgetsSpec.js b/test/widgetsSpec.js
index c0cdd565..df0941c0 100644
--- a/test/widgetsSpec.js
+++ b/test/widgetsSpec.js
@@ -345,9 +345,9 @@ describe("widget", function(){
it('should initialize to selected', function(){
compile(
'<select name="selection">' +
- '<option>A</option>' +
- '<option selected>B</option>' +
- '</select>');
+ '<option>A</option>' +
+ '<option selected>B</option>' +
+ '</select>');
expect(scope.selection).toEqual('B');
scope.selection = 'A';
scope.$eval();