Generate valid JSON even with invalid dates (#3801)

This commit is contained in:
Dustin J. Mitchell 2025-03-06 10:59:14 -05:00 committed by GitHub
parent 022650dbff
commit 74276b400c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -29,6 +29,7 @@ import sys
import os
import re
import time
import json
import unittest
# Ensure python finds the local simpletap module
@ -192,6 +193,7 @@ class TestUnusualTasks(TestCase):
modified="modified",
)
_, out, _ = self.t(f"{uuid} export")
json.loads(out)
if __name__ == "__main__":