aboutsummaryrefslogtreecommitdiffstats
path: root/gui/app/scripts/controllers/testsuit.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'gui/app/scripts/controllers/testsuit.controller.js')
-rw-r--r--gui/app/scripts/controllers/testsuit.controller.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/app/scripts/controllers/testsuit.controller.js b/gui/app/scripts/controllers/testsuit.controller.js
index abc9095c7..a15daa776 100644
--- a/gui/app/scripts/controllers/testsuit.controller.js
+++ b/gui/app/scripts/controllers/testsuit.controller.js
@@ -41,16 +41,16 @@ angular.module('yardStickGui2App')
function gotoDetail(name) {
var temp = name.split('.')[0];
- $state.go('app2.suitedetail', { name: temp })
+ $state.go('app.suitedetail', { name: temp })
}
function gotoCreateSuite() {
- $state.go('app2.suitcreate');
+ $state.go('app.suitcreate');
}
$scope.goBack = function goBack() {
- $state.go('app2.projectList');
+ $state.go('app.projectList');
}