Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
0 additions and
1 deletions
-
test/test_utils.py
|
@ -670,7 +670,6 @@ class TestUtil(unittest.TestCase): |
|
|
on = js_to_json('{42:42}') |
|
|
on = js_to_json('{42:42}') |
|
|
self.assertEqual(json.loads(on), {'42': 42}) |
|
|
self.assertEqual(json.loads(on), {'42': 42}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_extract_attributes(self): |
|
|
def test_extract_attributes(self): |
|
|
self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'}) |
|
|
self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'}) |
|
|
self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'}) |
|
|
self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'}) |
|
|