Skip to content

Commit eefcd49

Browse files
committed
fix: remove emoji from e2e framework scripts
Avoid using emoji in log messages.
1 parent 45d074d commit eefcd49

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

e2e/ci_suite_framework.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ run_test() {
5151

5252
# Run the test
5353
if "$test_script"; then
54-
echo "PASSED: $test_name"
54+
echo "PASSED: $test_name"
5555
else
56-
echo "FAILED: $test_name"
56+
echo "FAILED: $test_name"
5757
FAILED_TESTS+=("$test_name")
5858
# Continue running other tests instead of exiting immediately
5959
# This provides more comprehensive feedback in CI
@@ -65,7 +65,7 @@ run_test() {
6565
clean_test_environment() {
6666
local test_name="$1"
6767

68-
echo "🧹 Cleaning environment before test: $test_name"
68+
echo "Cleaning environment before test: $test_name"
6969

7070
# Remove e2e output directory
7171
local outdir
@@ -79,7 +79,7 @@ clean_test_environment() {
7979
echo "Removing hatch e2e environment..."
8080
hatch env remove e2e 2>/dev/null || true
8181

82-
echo "Environment cleaned for test: $test_name"
82+
echo "Environment cleaned for test: $test_name"
8383
}
8484

8585
# Print a section header for organizing related tests
@@ -114,6 +114,6 @@ finish_suite() {
114114
done
115115
exit 1
116116
else
117-
echo "All tests in $SUITE_NAME passed!"
117+
echo "All tests in $SUITE_NAME passed!"
118118
fi
119119
}

0 commit comments

Comments
 (0)