Skip to content

Commit

Permalink
chore_: rename to extract_data
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sirotin committed Dec 19, 2024
1 parent d5bcaf6 commit dfeecfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests-functional/clients/status_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def _set_proxy_credentials(self, data):
data["StatusProxyStageName"] = "test"
return data

def load_statusgo_data(self, path: str):
def extract_data(self, path: str):
if not self.container:
return path

Expand Down
4 changes: 2 additions & 2 deletions tests-functional/tests/test_init_status_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ def test_check_logs(log_enabled: bool, api_logging_enabled: bool):
},
)

local_geth_log = backend.load_statusgo_data(os.path.join(logs_dir, "geth.log"))
local_api_log = backend.load_statusgo_data(os.path.join(logs_dir, "api.log"))
local_geth_log = backend.extract_data(os.path.join(logs_dir, "geth.log"))
local_api_log = backend.extract_data(os.path.join(logs_dir, "api.log"))

assert_file_first_line(
path=local_geth_log,
Expand Down

0 comments on commit dfeecfc

Please sign in to comment.