Skip to content

Commit

Permalink
Update HOWTO.md
Browse files Browse the repository at this point in the history
  • Loading branch information
R9295 authored Mar 25, 2022
1 parent 00ba949 commit 6bae414
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ $ cat tests/test_serialize.py
```
``` python
# parser/tests/test_serialize.py
import pytest
from parser import serializer
from .commons import (
assert_list_entries,
Expand Down Expand Up @@ -133,6 +134,7 @@ tests:
``` bash
$ parserkiosk . --builtin python
$ cat tests/test_serialize.py
import pytest
from parser import serializer
from .commons import (
assert_list_entries,
Expand All @@ -154,7 +156,7 @@ def test_error_less_than_two_comma_entries():
data = "helloworld"
try:
serialized_data = serializer.serialize(data)
assert False
pytest.fail()
except Exception as e:
pass
```
Expand Down

0 comments on commit 6bae414

Please sign in to comment.