Skip to content

Commit fc5d0d3

Browse files
committed
style(test): use double quotes for config tests
1 parent 9161013 commit fc5d0d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/configuration_validations_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_deprecation_warning_timeout_seconds(caplog: pytest.LogCaptureFixture) -
4444
}
4545
ConfigurationValidations.show_deprecation_warnings(config_dict)
4646
assert (
47-
' '.join(
47+
" ".join(
4848
[
4949
"Deprecation warning: timeout_seconds is now renamed",
5050
"to connection_timeout_seconds",
@@ -180,7 +180,7 @@ def test_validate_config_dict_with_wrong_nearest_node() -> None:
180180
"""Test validate_config_dict with wrong nearest node."""
181181
with pytest.raises(
182182
ConfigError,
183-
match='`nearest_node` entry must be a URL string or a dictionary with the following required keys: host, port, protocol', # noqa: B950
183+
match="`nearest_node` entry must be a URL string or a dictionary with the following required keys: host, port, protocol", # noqa: B950
184184
):
185185
ConfigurationValidations.validate_config_dict(
186186
{

0 commit comments

Comments
 (0)