Sfoglia il codice sorgente

dashboard_history: fixed history srv unit tests

Torkel Ödegaard 8 anni fa
parent
commit
9b629cd5a6

+ 3 - 3
public/app/features/dashboard/specs/history_srv_specs.ts

@@ -15,9 +15,9 @@ describe('historySrv', function() {
   beforeEach(angularMocks.module('grafana.services'));
   beforeEach(angularMocks.inject(function($httpBackend) {
     ctx.$httpBackend = $httpBackend;
-    $httpBackend.whenRoute('GET', 'api/dashboards/db/:id/versions').respond(versionsResponse);
-    $httpBackend.whenRoute('GET', 'api/dashboards/db/:id/compare/:original...:new').respond(compareResponse);
-    $httpBackend.whenRoute('POST', 'api/dashboards/db/:id/restore')
+    $httpBackend.whenRoute('GET', 'api/dashboards/id/:id/versions').respond(versionsResponse);
+    $httpBackend.whenRoute('GET', 'api/dashboards/id/:id/compare/:original...:new').respond(compareResponse);
+    $httpBackend.whenRoute('POST', 'api/dashboards/id/:id/restore')
       .respond(function(method, url, data, headers, params) {
         const parsedData = JSON.parse(data);
         return [200, restoreResponse(parsedData.version)];