From 0d8736e6309fadb1fdc8eb556db90f521846faa5 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Sat, 7 Feb 2026 21:29:34 -0300 Subject: [PATCH 1/2] tests: fix typo in test name form -> from Closes #27 --- tests/test_l9format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_l9format.py b/tests/test_l9format.py index da3b924..01edfd6 100644 --- a/tests/test_l9format.py +++ b/tests/test_l9format.py @@ -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) From 22095c5296043629ee5d9cfca4ee6cc5ebda21bf Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Sat, 7 Feb 2026 21:30:27 -0300 Subject: [PATCH 2/2] CHANGELOG: add entry for test name typo fix (#27) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71bc5fa..a5adfe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -137,6 +142,7 @@ and this project adheres to +[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 @@ -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