File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def test_init(fake_api_call: ApiCall) -> None:
4747 fake_api_call .config .nearest_node ,
4848 )
4949 assert (
50- override ._endpoint_path () # noqa: WPS437
50+ override ._endpoint_path # noqa: WPS437
5151 == "/collections/companies/overrides/company_override"
5252 )
5353
@@ -104,7 +104,7 @@ def test_init_async(fake_async_api_call: AsyncApiCall) -> None:
104104 fake_async_api_call .config .nearest_node ,
105105 )
106106 assert (
107- override ._endpoint_path () # noqa: WPS437
107+ override ._endpoint_path # noqa: WPS437
108108 == "/collections/companies/overrides/company_override"
109109 )
110110
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def test_get_missing_override(fake_overrides: Overrides) -> None:
6161 )
6262 assert override .collection_name == "companies"
6363 assert (
64- override ._endpoint_path () # noqa: WPS437
64+ override ._endpoint_path # noqa: WPS437
6565 == "/collections/companies/overrides/company_override"
6666 )
6767
@@ -186,7 +186,7 @@ def test_get_missing_override_async(fake_async_overrides) -> None:
186186 )
187187 assert override .collection_name == "companies"
188188 assert (
189- override ._endpoint_path () # noqa: WPS437
189+ override ._endpoint_path # noqa: WPS437
190190 == "/collections/companies/overrides/company_override"
191191 )
192192
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def test_init(fake_api_call: ApiCall) -> None:
4545 fake_api_call .config .nearest_node ,
4646 )
4747 assert (
48- synonym ._endpoint_path () # noqa: WPS437
48+ synonym ._endpoint_path # noqa: WPS437
4949 == "/collections/companies/synonyms/company_synonym"
5050 )
5151
@@ -99,7 +99,7 @@ def test_init_async(fake_async_api_call: AsyncApiCall) -> None:
9999 fake_async_api_call .config .nearest_node ,
100100 )
101101 assert (
102- synonym ._endpoint_path () # noqa: WPS437
102+ synonym ._endpoint_path # noqa: WPS437
103103 == "/collections/companies/synonyms/company_synonym"
104104 )
105105
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def test_get_missing_synonym(fake_synonyms: Synonyms) -> None:
6262 )
6363 assert synonym .collection_name == "companies"
6464 assert (
65- synonym ._endpoint_path () # noqa: WPS437
65+ synonym ._endpoint_path # noqa: WPS437
6666 == "/collections/companies/synonyms/company_synonym"
6767 )
6868
@@ -174,7 +174,7 @@ def test_get_missing_synonym_async(fake_async_synonyms) -> None:
174174 )
175175 assert synonym .collection_name == "companies"
176176 assert (
177- synonym ._endpoint_path () # noqa: WPS437
177+ synonym ._endpoint_path # noqa: WPS437
178178 == "/collections/companies/synonyms/company_synonym"
179179 )
180180
You can’t perform that action at this time.
0 commit comments