Fix a bad unit test for amphora list

A unit test for amphora list was trying to pass a load balancer
ID on a test for "no parameters".
This patch fixes that test.

Change-Id: I23912543b84a5ebb523033502cf35282e9405003
This commit is contained in:
Michael Johnson 2019-09-13 12:02:46 -07:00
parent 3a5461f9db
commit e76f3de21b
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ class TestLoadBalancer(TestOctaviaClient):
def test_list_amphora_no_options(self):
self.requests_mock.register_uri(
'GET',
FAKE_OCTAVIA_URL + 'amphorae?/' + FAKE_LB,
FAKE_OCTAVIA_URL + 'amphorae?',
json=LIST_AMP_RESP,
status_code=200,
)