Skip to content

Commit

Permalink
fix(test): import correct retry library (near#9126)
Browse files Browse the repository at this point in the history
I didn't test near#9111 properly, this doesn't actually
work as expected. We need `retrying` not `retry`.
  • Loading branch information
jakmeier authored and nikurt committed Jun 8, 2023
1 parent 279c5c9 commit d29af6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest/tests/loadtest/locust/common/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from configured_logger import new_logger
from locust import HttpUser, events, runners
from retrying import retry
import utils
import mocknet_helpers
import key
Expand All @@ -17,7 +18,6 @@
import requests
import sys
import time
import retry

sys.path.append(str(pathlib.Path(__file__).resolve().parents[4] / 'lib'))

Expand Down

0 comments on commit d29af6d

Please sign in to comment.