Skip to content

Commit

Permalink
[bug] Fix integration test (#670)
Browse files Browse the repository at this point in the history
Integration test is failing on main, this PR fixes pending issues:
* Bad assertion check
  • Loading branch information
parasj authored Nov 7, 2022
1 parent 35cb10e commit 4d185f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyplane/compute/gcp/gcp_cloud_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def region_list_standard():

@classmethod
def get_transfer_cost(cls, src_key, dst_key, premium_tier=True):
assert src_key.startswith("aws:")
assert src_key.startswith("gcp:")
return GCPPricing.get_transfer_cost(src_key, dst_key, premium_tier)

def get_instance_list(self, region) -> List[GCPServer]:
Expand Down

0 comments on commit 4d185f6

Please sign in to comment.