mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-23 03:27:14 -04:00
fix import paths/names
This commit is contained in:
parent
3051861a27
commit
399139e6b4
3 changed files with 8 additions and 8 deletions
|
@ -4,9 +4,9 @@ import pytest
|
|||
from util import afor, arun
|
||||
|
||||
from streamrip.config import Config
|
||||
from streamrip.downloadable import BasicDownloadable
|
||||
from streamrip.exceptions import MissingCredentials
|
||||
from streamrip.qobuz_client import QobuzClient
|
||||
from streamrip.client.downloadable import BasicDownloadable
|
||||
from streamrip.exceptions import MissingCredentialsError
|
||||
from streamrip.client.qobuz import QobuzClient
|
||||
|
||||
logger = logging.getLogger("streamrip")
|
||||
|
||||
|
@ -18,7 +18,7 @@ def client(qobuz_client):
|
|||
|
||||
def test_client_raises_missing_credentials():
|
||||
c = Config.defaults()
|
||||
with pytest.raises(MissingCredentials):
|
||||
with pytest.raises(MissingCredentialsError):
|
||||
arun(QobuzClient(c).login())
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue