Skip to content

Commit f8a9e20

Browse files
authored
Merge pull request #37 from LeakIX/copilot/fix-typo-in-test-name
tests: fix typo in test name form -> from
2 parents f8f51bd + 22095c5 commit f8a9e20

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ and this project adheres to
1515
- Tests now import from `l9format` package directly instead of
1616
`l9format.l9format` ([e8aef2e], [#21])
1717

18+
### Fixed
19+
20+
- Fix typo in test name: `test_l9events_form_ip4scout` ->
21+
`test_l9events_from_ip4scout` ([0d8736e], [#27])
22+
1823
### Infrastructure
1924

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

138143
<!-- Commit links -->
139144

145+
[0d8736e]: https://github.com/LeakIX/l9format-python/commit/0d8736e
140146
[d30efd2]: https://github.com/LeakIX/l9format-python/commit/d30efd2
141147
[1dcfbef]: https://github.com/LeakIX/l9format-python/commit/1dcfbef
142148
[e8aef2e]: https://github.com/LeakIX/l9format-python/commit/e8aef2e
@@ -199,4 +205,5 @@ and this project adheres to
199205
[#16]: https://github.com/LeakIX/l9format-python/pull/16
200206
[#18]: https://github.com/LeakIX/l9format-python/pull/18
201207
[#21]: https://github.com/LeakIX/l9format-python/issues/21
208+
[#27]: https://github.com/LeakIX/l9format-python/issues/27
202209
[#35]: https://github.com/LeakIX/l9format-python/issues/35

tests/test_l9format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_l9event_json_from_reference_repository():
1919
L9Event.from_dict(c)
2020

2121

22-
def test_l9events_form_ip4scout():
22+
def test_l9events_from_ip4scout():
2323
for path in IP4SCOUT_FILES:
2424
c = json.load(open(str(path), "r"))
2525
L9Event.from_dict(c)

0 commit comments

Comments
 (0)