Skip to content

Commit

Permalink
✅ Test for now-available location property on SREApplicationGatewayCo…
Browse files Browse the repository at this point in the history
…mponent
  • Loading branch information
jemrobinson committed Jul 18, 2024
1 parent a17d467 commit 2b58df1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/infrastructure/programs/sre/test_application_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,12 @@ def test_application_gateway_load_distribution_policies(

@pulumi.runtime.test
def test_application_gateway_location(
self, application_gateway_component: SREApplicationGatewayComponent
self,
application_gateway_component: SREApplicationGatewayComponent,
location: str,
):
application_gateway_component.application_gateway.location.apply(
partial(assert_equal, None),
partial(assert_equal, location),
run_with_unknowns=True,
)

Expand Down

0 comments on commit 2b58df1

Please sign in to comment.