We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f43b7e commit 6606a34Copy full SHA for 6606a34
tests/integration/helper.py
@@ -55,15 +55,14 @@ def app_installation_login(self):
55
self.current_cassette.is_recording()
56
and self.private_key_bytes
57
and self.app_id
58
- and self.installation_id
+ and self.app_installation_id
59
):
60
self.gh.login_as_app_installation(
61
self.private_key_bytes,
62
app_id=self.app_id,
63
installation_id=self.app_installation_id,
64
- expire_in=30,
65
)
66
- token = self.gh.session.auth
+ token = self.gh.session.auth.token
67
else:
68
token = "v1.{}".format("x" * 10)
69
now = datetime.datetime.now(tz=dateutil.tz.UTC)
0 commit comments