Add Semicolon ath the end 25/95125/1
authoranushadasari <danush10@in.ibm.com>
Fri, 6 Sep 2019 09:46:27 +0000 (15:16 +0530)
committeranushadasari <danush10@in.ibm.com>
Fri, 6 Sep 2019 09:46:48 +0000 (15:16 +0530)
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line.

Issue-ID: VID-607
Change-Id: I9ca9d0f3c935efe83859b4d623939adce0a38465
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/modals/change-management-manual-tasks-controller/change-management-manual-tasks.controller.test.js

index deefca7..3397179 100644 (file)
@@ -102,7 +102,7 @@ describe('changeManagementManualTasksController testing', () => {
         // when
         return $controller.__test_only__.loadAvailableTasks('anything')
         .then(() => {
-            expect($controller.manualTasks).toBeUndefined()
+            expect($controller.manualTasks).toBeUndefined();
         });
     });