From 5e2ce46ddb21087e72f2be824f7d8fd1f7857ce3 Mon Sep 17 00:00:00 2001 From: SandeshPyakurel <85491057+SandeshPyakurel@users.noreply.github.com> Date: Wed, 1 Nov 2023 02:28:25 +0545 Subject: [PATCH] Typos fixed in multiple files (#2090) --- tests/test_app.py | 2 +- tests/test_config.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_app.py b/tests/test_app.py index 024a76dbe..619b2775f 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -308,7 +308,7 @@ def test_initialize_with_custom_admin_dashboard( def test_initialize_admin_dashboard_with_view_overrides(test_model): - """Test setting the admin dashboard of an app with view class overriden. + """Test setting the admin dashboard of an app with view class overridden. Args: test_model: The default model. diff --git a/tests/test_config.py b/tests/test_config.py index 5f17a1135..bc3531412 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -139,7 +139,7 @@ DEFAULT_CONFIG = rx.Config(app_name="a") "frontend_port": 3001, }, ), - # Ports set in environment take precendence + # Ports set in environment take precedence ( {"backend_port": 8001, "frontend_port": 3001}, {"BACKEND_PORT": 8002}, @@ -151,7 +151,7 @@ DEFAULT_CONFIG = rx.Config(app_name="a") "frontend_port": 3001, }, ), - # Ports set on the command line take precendence + # Ports set on the command line take precedence ( {"backend_port": 8001, "frontend_port": 3001}, {"BACKEND_PORT": 8002},