Skip to content

Commit 36db084

Browse files
committed
do check for mysql specifically
1 parent aac4833 commit 36db084

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

django_enum/tests/tests.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6210,7 +6210,10 @@ def defaults(self):
62106210
def test_db_defaults(self):
62116211

62126212
obj = DBDefaultTester.objects.create()
6213-
obj.refresh_from_db() # check if this fixes mysql bug
6213+
# TODO - there seems to be a mysql bug here where DatabaseDefaults
6214+
# are not refreshed from the db after creation - works on all other platforms
6215+
if connection.vendor == "mysql":
6216+
obj.refresh_from_db()
62146217

62156218
for field, value in self.defaults.items():
62166219
obj_field = DBDefaultTester._meta.get_field(field)

0 commit comments

Comments
 (0)