Skip to content

Commit 8555172

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 594361d commit 8555172

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/integration/models/linode/test_linode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -854,8 +854,8 @@ def test_get_linode_types(test_linode_client):
854854
if len(v.region_prices) > 0 and v.region_prices[0].hourly > 0
855855
]
856856

857-
any(v.region_prices[0].hourly > 0 for v in regional_priced_types)
858-
any(v.region_prices[0].monthly > 0 for v in regional_priced_types)
857+
assert any(v.region_prices[0].hourly > 0 for v in regional_priced_types)
858+
assert any(v.region_prices[0].monthly > 0 for v in regional_priced_types)
859859

860860

861861
@pytest.mark.flaky(reruns=3, reruns_delay=2)

0 commit comments

Comments
 (0)