Commit d6a87eef authored by Collin Anderson's avatar Collin Anderson Committed by Tim Graham
Browse files

Skip another test if sqlparse is not available

Refs #23426
parent bf1bb07b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1195,6 +1195,7 @@ class OperationTests(OperationTestBase):
            operation.database_backwards("test_runsql", editor, new_state, project_state)
        self.assertTableNotExists("i_love_ponies")

    @unittest.skipIf(sqlparse is None and connection.features.requires_sqlparse_for_splitting, "Missing sqlparse")
    def test_run_sql_params(self):
        """
        #23426 - RunSQL should accept parameters.