Skip to content

Commit

Permalink
fix paid burst testing (#36995)
Browse files Browse the repository at this point in the history
  • Loading branch information
weirongw23-msft authored Aug 24, 2024
1 parent 677f962 commit 797ff21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-file-share/tests/test_share.py
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,8 @@ def test_share_paid_bursting(self, **kwargs):
iops = 102400

# Act / Assert
share = self._create_share(
share = self._get_share_reference()
share.create_share(
paid_bursting_enabled=True,
paid_bursting_bandwidth_mibps=5000,
paid_bursting_iops=1000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1695,7 +1695,8 @@ async def test_share_paid_bursting(self, **kwargs):
iops = 102400

# Act / Assert
share = await self._create_share(
share = self._get_share_reference()
await share.create_share(
paid_bursting_enabled=True,
paid_bursting_bandwidth_mibps=5000,
paid_bursting_iops=1000
Expand Down

0 comments on commit 797ff21

Please sign in to comment.