Skip to content

Commit

Permalink
test(azure): Remove test that asserts nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen authored and mergify[bot] committed Dec 16, 2020
1 parent 9fe939c commit c5614e4
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,4 @@ describe('Controller: azureCreateLoadBalancerCtrl', function () {
expect(this.$scope.existingLoadBalancerNames).toEqual(undefined);
expect(lb.providerType).toEqual(undefined);
});

it('makes the expected REST calls for data for a new loadbalancer', function () {
$httpBackend.when('GET', API.baseUrl + '/networks').respond([]);
$httpBackend.when('GET', API.baseUrl + '/securityGroups').respond({});
$httpBackend.when('GET', API.baseUrl + '/credentials?expand=true').respond([]);
$httpBackend.when('GET', API.baseUrl + '/subnets').respond([]);
});
});

0 comments on commit c5614e4

Please sign in to comment.