summaryrefslogtreecommitdiff
path: root/src/leap/soledad/tests/test_soledad.py
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2013-05-25 10:39:32 -0300
committerdrebs <drebs@leap.se>2013-05-25 11:20:21 -0300
commit6be80318adc9f1323b0b83651107810ac481511e (patch)
tree5daf12e2e794e9bd997db71e8138a3ed83c25978 /src/leap/soledad/tests/test_soledad.py
parentfdb52571378d1e6d522a74ad29833114a7eccd2e (diff)
Enforce dependency on simplejson.
Diffstat (limited to 'src/leap/soledad/tests/test_soledad.py')
-rw-r--r--src/leap/soledad/tests/test_soledad.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/leap/soledad/tests/test_soledad.py b/src/leap/soledad/tests/test_soledad.py
index 5eef039f..1c0e6d4a 100644
--- a/src/leap/soledad/tests/test_soledad.py
+++ b/src/leap/soledad/tests/test_soledad.py
@@ -24,10 +24,7 @@ Tests for general Soledad functionality.
import os
import re
import tempfile
-try:
- import simplejson as json
-except ImportError:
- import json # noqa
+import simplejson as json
from leap.common.testing.basetest import BaseLeapTest