Skip to content

Commit

Permalink
change default readonly value type in test settings
Browse files Browse the repository at this point in the history
  • Loading branch information
juliarbkv committed Nov 8, 2024
1 parent 9631dbc commit e271a1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def connection_params(self) -> dict:
port=CoreReadonlyConnectionSettings.PORT,
username=CoreReadonlyConnectionSettings.USERNAME,
password=CoreReadonlyConnectionSettings.PASSWORD,
readonly="1",
readonly=1,
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def connection_creation_params(self) -> dict:
port=test_config.CoreReadonlyConnectionSettings.PORT,
username=test_config.CoreReadonlyConnectionSettings.USERNAME,
password=test_config.CoreReadonlyConnectionSettings.PASSWORD,
readonly="1",
readonly=1,
)


Expand Down

0 comments on commit e271a1b

Please sign in to comment.