Skip to content
Snippets Groups Projects
Commit 41c04c75 authored by Bienchen's avatar Bienchen
Browse files

Use Python's own JSON module for more robust unit testing. Alternative JSON...

Use Python's own JSON module for more robust unit testing. Alternative JSON modules may be faster but may also deliver slightly different output concerning whitespaces.
parent 407e03cd
No related branches found
No related tags found
No related merge requests found
......@@ -5,10 +5,7 @@ Testing our own little argument parser.
import unittest
import tempfile
import gzip
try:
import ujson as json
except ImportError:
import json
import json
import ost
from promod3.core import pm3argparse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment