equal
deleted
inserted
replaced
202 self.assertEqual(2, json_resp['count']) |
202 self.assertEqual(2, json_resp['count']) |
203 self.assertEqual(2, len(json_resp['results'])) |
203 self.assertEqual(2, len(json_resp['results'])) |
204 |
204 |
205 for note_json in json_resp['results']: |
205 for note_json in json_resp['results']: |
206 self.assertEqual(str(self.session1.ext_id), note_json.get('session')) |
206 self.assertEqual(str(self.session1.ext_id), note_json.get('session')) |
|
207 self.assertIn('plain', note_json) |
|
208 self.assertIn('html', note_json) |
|
209 self.assertIn('raw', note_json) |
207 |
210 |
208 |
211 |
209 def test_root_note_list_modified(self): |
212 def test_root_note_list_modified(self): |
210 |
213 |
211 nexthour = \ |
214 nexthour = \ |