Skip to content

Commit 0660249

Browse files
committed
wip 4
1 parent 301c757 commit 0660249

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmstestsuite/unit_tests/locale/locale_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class TestName(unittest.TestCase):
7272

7373
def test_own_name_language_only(self):
7474
self.assertEqual(ENGLISH.name, "English")
75-
self.assertEqual(ITALIAN.name, "🤌")
75+
self.assertEqual(ITALIAN.name, "italiano")
7676

7777
def test_own_name_language_and_country(self):
7878
self.assertEqual(BRITISH_ENGLISH.name, "English (United Kingdom)")

docker-compose.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
# This contraption is needed because otherwise failing unit tests aren't
3636
# reported in the CI as long as the functional tests are passing. Ideally
3737
# we should get rid of `cmsRunFunctionalTests` and make those tests work
38-
# with pytest so they can be auto-discovered and run with it.
38+
# with pytest so they can be auto-discovered and run in a single command.
3939
if [ $UNIT -ne 0 ] || [ $FUNC -ne 0 ]; then
4040
exit 1
4141
else

0 commit comments

Comments
 (0)