Skip to content

Commit

Permalink
Fix failing utest after function rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ge0Aja committed Dec 1, 2023
1 parent 1b60b49 commit ee43fac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/logs_monitoring/tests/test_lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
enrich,
transform,
split,
merge_custom_and_application_tags,
merge_tags,
)
from parsing import parse, parse_event_type

Expand Down Expand Up @@ -318,7 +318,7 @@ def test_merge_custom_and_application_tags(self):
message_tags = "key0:value0,key1:value1"
custom_tags = "key2:value2,key0:value3"
self.assertEqual(
merge_custom_and_application_tags(custom_tags, message_tags),
merge_tags(custom_tags, message_tags),
"key0:value0,key1:value1,key2:value2",
)

Expand Down

0 comments on commit ee43fac

Please sign in to comment.