Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ and this project adheres to
- Tests now import from `l9format` package directly instead of
`l9format.l9format` ([e8aef2e], [#21])

### Fixed

- Fix typo in test name: `test_l9events_form_ip4scout` ->
`test_l9events_from_ip4scout` ([0d8736e], [#27])

### Infrastructure

- CI: enforce CHANGELOG.md changes are in dedicated commits
Expand Down Expand Up @@ -137,6 +142,7 @@ and this project adheres to

<!-- Commit links -->

[0d8736e]: https://github.com/LeakIX/l9format-python/commit/0d8736e
[d30efd2]: https://github.com/LeakIX/l9format-python/commit/d30efd2
[1dcfbef]: https://github.com/LeakIX/l9format-python/commit/1dcfbef
[e8aef2e]: https://github.com/LeakIX/l9format-python/commit/e8aef2e
Expand Down Expand Up @@ -199,4 +205,5 @@ and this project adheres to
[#16]: https://github.com/LeakIX/l9format-python/pull/16
[#18]: https://github.com/LeakIX/l9format-python/pull/18
[#21]: https://github.com/LeakIX/l9format-python/issues/21
[#27]: https://github.com/LeakIX/l9format-python/issues/27
[#35]: https://github.com/LeakIX/l9format-python/issues/35
2 changes: 1 addition & 1 deletion tests/test_l9format.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_l9event_json_from_reference_repository():
L9Event.from_dict(c)


def test_l9events_form_ip4scout():
def test_l9events_from_ip4scout():
for path in IP4SCOUT_FILES:
c = json.load(open(str(path), "r"))
L9Event.from_dict(c)
Expand Down