1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

[5.1.x] Refs #29850 -- Removed obsolete test_window_frame_raise_not_supported_error.

This NotSupportedError was removed in 6375cee490725969b4f67b3c988ef01350c1ad6d
because it will never be reached due to the same exception raised by
Window.as_sql().

Backport of 94436dee57ce677e6ffcbb0438e0441d5c261d62 from main.
This commit is contained in:
Tim Graham 2024-12-14 10:35:06 -05:00 committed by Sarah Boyce
parent 5f4252ecd6
commit 6f42b675c7

View File

@ -174,12 +174,6 @@ class DatabaseOperationTests(TestCase):
def setUp(self):
self.ops = BaseDatabaseOperations(connection=connection)
@skipIfDBFeature("supports_over_clause")
def test_window_frame_raise_not_supported_error(self):
msg = "This backend does not support window expressions."
with self.assertRaisesMessage(NotSupportedError, msg):
self.ops.window_frame_rows_start_end()
@skipIfDBFeature("can_distinct_on_fields")
def test_distinct_on_fields(self):
msg = "DISTINCT ON fields is not supported by this database backend"