def test_polling_with_path_format_arguments(client):
    method = LROBasePolling(timeout=0,
                            path_format_arguments={
                                "host": "host:3000",
                                "accountName": "local"
                            })
    client._base_url = "http://{accountName}{host}"

    method._operation = LocationPolling()
    method._operation._location_url = "/results/1"
    method._client = client
    assert "http://localhost:3000/results/1" == method._client.format_url(
        method._operation.get_polling_url(), **method._path_format_arguments)