From 154772b7f40468a7f68ee2e2c5bd46b065c4ba8e Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Mon, 22 Dec 2014 00:24:30 -0800 Subject: [PATCH] style(json-tree.spec): add missing semicolon --- panel/components/json-tree/json-tree.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/components/json-tree/json-tree.spec.js b/panel/components/json-tree/json-tree.spec.js index 096cce8..8c0f5b4 100644 --- a/panel/components/json-tree/json-tree.spec.js +++ b/panel/components/json-tree/json-tree.spec.js @@ -17,7 +17,7 @@ describe('batJsonTree', function () { it('should render a simple model', function () { $rootScope.data = { '': { '$id': 1 } - } + }; compileTree(); expect(element.text()).toBe('$id: 1'); });