Skip to content

Commit

Permalink
Remove await
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinaleonr committed Aug 22, 2024
1 parent 2adfbb1 commit 52a800d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/measure/measure.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ angular.module('Measure.Measure', ['ngRoute'])
await runNdt7(sessionID);
}

await runPT(sessionID)
runPT(sessionID)

$scope.$apply(function () {
$scope.currentPhase = gettextCatalog.getString('Complete');
Expand Down Expand Up @@ -201,7 +201,7 @@ angular.module('Measure.Measure', ['ngRoute'])
$scope.location = server.location.city + ", " +
server.location.country;
$scope.address = server.machine;
console.log('Testing to:', {
console.log('Testing PT to:', {
machine: server.machine,
locations: server.location,
});
Expand Down

0 comments on commit 52a800d

Please sign in to comment.