=
commited on
Commit
·
b1c7fbf
1
Parent(s):
8ecada8
fixed test suite
Browse files
deep_translator/tests/test_linguee.py
CHANGED
@@ -8,7 +8,7 @@ from deep_translator import exceptions, LingueeTranslator
|
|
8 |
|
9 |
@pytest.fixture
|
10 |
def linguee():
|
11 |
-
return LingueeTranslator(source="
|
12 |
|
13 |
|
14 |
def test_content(linguee):
|
|
|
8 |
|
9 |
@pytest.fixture
|
10 |
def linguee():
|
11 |
+
return LingueeTranslator(source="english", target='french')
|
12 |
|
13 |
|
14 |
def test_content(linguee):
|
deep_translator/tests/test_pons.py
CHANGED
@@ -8,7 +8,7 @@ from deep_translator import exceptions, PonsTranslator
|
|
8 |
|
9 |
@pytest.fixture
|
10 |
def pons():
|
11 |
-
return PonsTranslator(source="
|
12 |
|
13 |
|
14 |
def test_content(pons):
|
|
|
8 |
|
9 |
@pytest.fixture
|
10 |
def pons():
|
11 |
+
return PonsTranslator(source="english", target='french')
|
12 |
|
13 |
|
14 |
def test_content(pons):
|