We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f6f7ee commit 1f6ae7eCopy full SHA for 1f6ae7e
tests/unit/test_environment.py
@@ -1,6 +1,7 @@
1
# Copyright (c) 2024, Oracle and/or its affiliates.
2
# Licensed under the Universal Permissive License v 1.0 as shown at
3
# https://oss.oracle.com/licenses/upl.
4
+
5
import pytest
6
7
from coherence import Options, TlsOptions
@@ -28,6 +29,7 @@ def test_options_address(monkeypatch: pytest.MonkeyPatch) -> None:
28
29
30
def test_options_req_timeout(monkeypatch: pytest.MonkeyPatch) -> None:
31
try:
32
+ monkeypatch.delenv(name=Options.ENV_REQUEST_TIMEOUT, raising=False)
33
options: Options = Options()
34
assert options.request_timeout_seconds == 30
35
0 commit comments