Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 04e617b

Browse files
authored
fix emoji references (#1161)
1 parent 96ab82b commit 04e617b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

services/notification/notifiers/mixins/message/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ def write_section_to_msg(
207207
def write_cross_pollination_message(self, write: Callable):
208208
extra_message = []
209209

210-
ta_message = "- [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems."
211-
ba_message = "- 📦 [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges."
210+
ta_message = "- :snowflake: [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems."
211+
ba_message = "- :package: [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges."
212212

213213
if not self.repository.test_analytics_enabled:
214214
extra_message.append(ta_message)
@@ -220,7 +220,7 @@ def write_cross_pollination_message(self, write: Callable):
220220

221221
if extra_message:
222222
for i in [
223-
"<details><summary>🚀 New features to boost your workflow: </summary>",
223+
"<details><summary> :rocket: New features to boost your workflow: </summary>",
224224
"",
225225
*extra_message,
226226
"</details>",

services/notification/notifiers/tests/unit/test_comment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3088,9 +3088,9 @@ def test_build_cross_pollination_message(
30883088
dbsession.flush()
30893089
result = notifier.build_message(comparison)
30903090

3091-
header = "<details><summary>🚀 New features to boost your workflow: </summary>"
3092-
ta_message = "- [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems."
3093-
ba_message = "- 📦 [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges."
3091+
header = "<details><summary> :rocket: New features to boost your workflow: </summary>"
3092+
ta_message = "- :snowflake: [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems."
3093+
ba_message = "- :package: [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges."
30943094

30953095
end_of_message = []
30963096

0 commit comments

Comments
 (0)