Skip to content

Commit

Permalink
Fix ext-theme test (#11776)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd authored Nov 18, 2024
1 parent 8de4883 commit fd655f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readthedocs/rtd_tests/tests/test_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from unittest import mock

import django_dynamic_fixture as fixture
from django.conf import settings
from django.contrib.auth.models import User
from django.test import TestCase
from django.test.utils import override_settings
Expand Down Expand Up @@ -54,7 +55,7 @@ class TestNotification(EmailNotification):
"DO_NOT_TRACK_ENABLED": mock.ANY,
"GLOBAL_ANALYTICS_CODE": mock.ANY,
"PRODUCTION_DOMAIN": "readthedocs.org",
"SWITCH_PRODUCTION_DOMAIN": "app.readthedocs.org",
"SWITCH_PRODUCTION_DOMAIN": settings.SWITCH_PRODUCTION_DOMAIN,
"PUBLIC_DOMAIN": mock.ANY,
"PUBLIC_API_URL": mock.ANY,
"RTD_EXT_THEME_ENABLED": mock.ANY,
Expand Down

0 comments on commit fd655f1

Please sign in to comment.