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 7e0cae2 commit add2846Copy full SHA for add2846
datadog_checks_base/tests/base/checks/test_agent_check.py
@@ -1317,12 +1317,13 @@ def test_env_var_logic_preset():
1317
assert os.getenv('OPENSSL_CONF', None) == preset_conf
1318
assert os.getenv('OPENSSL_MODULES', None) == preset_modules
1319
1320
+
1321
@pytest.mark.parametrize(
- "should_profile_value, expected_calls",
1322
- [
1323
- (True, 1),
1324
- (False, 0),
1325
- ],
+ "should_profile_value, expected_calls",
+ [
+ (True, 1),
+ (False, 0),
1326
+ ],
1327
)
1328
def test_profile_memory(should_profile_value, expected_calls):
1329
"""
0 commit comments