Skip to content

Commit 4b930b0

Browse files
committed
Also fixes typos in python test
1 parent 120701c commit 4b930b0

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ ctest -C Release
179179
To test the python bindings use:
180180

181181
```sh
182-
pip install .
183182
python -m pip install build pytest
184183
python -m build
185184
python -m pip install dist/*.whl --user

inkcpp_python/tests/conftest.py

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def story_path(tmpdir_factory):
3232

3333
@pytest.fixture(scope='session', autouse=True)
3434
def assets(story_path, inklecate_cmd):
35-
print(ink.__dict__, file=sys.stderr)
3635
res = {}
3736
for (name, files) in story_path.items():
3837
if not os.path.exists(files[0]):

inkcpp_python/tests/test_ExternalFunctions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_lookaheadSafe(self, assets, generate):
1616
assert out == "Call1 glued to Call 2\n"
1717
assert cnt.cnt == 3
1818
out = runner.getline()
19-
assert out == "Call 3 is seperated\n"
19+
assert out == "Call 3 is separated\n"
2020
assert cnt.cnt == 4
2121

2222
def test_lookahadeUnsafe(self, assets, generate):
@@ -30,6 +30,6 @@ def test_lookahadeUnsafe(self, assets, generate):
3030
assert out == "glued to Call 2\n"
3131
assert cnt.cnt == 2
3232
out = runner.getline()
33-
assert out == "Call 3 is seperated\n"
33+
assert out == "Call 3 is separated\n"
3434
assert cnt.cnt == 3
3535

0 commit comments

Comments
 (0)