Skip to content

Commit

Permalink
chore: make oidc endpoint obviously fake
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Dec 8, 2024
1 parent 5ff51ca commit ea0e5ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_authn.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from utils import AppFactory

app_factory = AppFactory(
oidc_discovery_url="https://samples.auth0.com/.well-known/openid-configuration",
oidc_discovery_url="https://example-stac-api.com/.well-known/openid-configuration",
default_public=False,
public_endpoints={},
private_endpoints={},
Expand Down
2 changes: 1 addition & 1 deletion tests/test_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from utils import AppFactory

app_factory = AppFactory(
oidc_discovery_url="https://samples.auth0.com/.well-known/openid-configuration"
oidc_discovery_url="https://example-stac-api.com/.well-known/openid-configuration"
)


Expand Down
2 changes: 1 addition & 1 deletion tests/test_guards_cel.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from utils import AppFactory

app_factory = AppFactory(
oidc_discovery_url="https://samples.auth0.com/.well-known/openid-configuration",
oidc_discovery_url="https://example-stac-api.com/.well-known/openid-configuration",
default_public=False,
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from utils import AppFactory

app_factory = AppFactory(
oidc_discovery_url="https://samples.auth0.com/.well-known/openid-configuration"
oidc_discovery_url="https://example-stac-api.com/.well-known/openid-configuration"
)


Expand Down

0 comments on commit ea0e5ad

Please sign in to comment.