From 798835112d81b852efaae0e067af389c733cd1b3 Mon Sep 17 00:00:00 2001 From: "Ahmad A. Hussein" Date: Tue, 23 Jun 2020 15:04:38 +0200 Subject: [PATCH] Fixed #31736 -- Fixed InspectDBTransactionalTests.test_foreign_data_wrapper crash on Windows. --- tests/inspectdb/tests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/inspectdb/tests.py b/tests/inspectdb/tests.py index 83326e96c0..fa3a7ac21f 100644 --- a/tests/inspectdb/tests.py +++ b/tests/inspectdb/tests.py @@ -1,3 +1,4 @@ +import os import re from io import StringIO from unittest import mock, skipUnless @@ -381,9 +382,9 @@ class InspectDBTransactionalTests(TransactionTestCase): sepal_length real, sepal_width real ) SERVER inspectdb_server OPTIONS ( - filename '/dev/null' + filename %s ) - ''') + ''', [os.devnull]) out = StringIO() foreign_table_model = 'class InspectdbIrisForeignTable(models.Model):' foreign_table_managed = 'managed = False'