Skip to content

Commit a29fca9

Browse files
authored
test: fix rate limit update (#610)
1 parent 54d548b commit a29fca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ def github_client(token: str) -> Github:
611611
"""Returns the github client."""
612612
gh = Github(token)
613613
rate_limit = gh.get_rate_limit()
614-
logging.info("GitHub token rate limit: %s", rate_limit.core)
614+
logging.info("GitHub token rate limit: %s", rate_limit.rate)
615615
return gh
616616

617617

0 commit comments

Comments
 (0)