Format file

This commit is contained in:
Serene-Arc
2021-04-23 20:47:16 +10:00
parent 6767777944
commit 386d5ea41c

View File

@@ -13,7 +13,11 @@ from bdfr.oauth2 import OAuth2TokenManager
@pytest.fixture(scope='session') @pytest.fixture(scope='session')
def reddit_instance(): def reddit_instance():
rd = praw.Reddit(client_id='U-6gk4ZCh3IeNQ', client_secret='7CZHY6AmKweZME5s50SfDGylaPg', user_agent='test') rd = praw.Reddit(
client_id='U-6gk4ZCh3IeNQ',
client_secret='7CZHY6AmKweZME5s50SfDGylaPg',
user_agent='test',
)
return rd return rd
@@ -27,8 +31,10 @@ def authenticated_reddit_instance():
if not cfg_parser.has_option('DEFAULT', 'user_token'): if not cfg_parser.has_option('DEFAULT', 'user_token'):
pytest.skip('Refresh token must be provided to authenticate with OAuth2') pytest.skip('Refresh token must be provided to authenticate with OAuth2')
token_manager = OAuth2TokenManager(cfg_parser, test_config_path) token_manager = OAuth2TokenManager(cfg_parser, test_config_path)
reddit_instance = praw.Reddit(client_id=cfg_parser.get('DEFAULT', 'client_id'), reddit_instance = praw.Reddit(
client_secret=cfg_parser.get('DEFAULT', 'client_secret'), client_id=cfg_parser.get('DEFAULT', 'client_id'),
user_agent=socket.gethostname(), client_secret=cfg_parser.get('DEFAULT', 'client_secret'),
token_manager=token_manager) user_agent=socket.gethostname(),
token_manager=token_manager,
)
return reddit_instance return reddit_instance