Skip to content
Snippets Groups Projects
Commit 2026fc66 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

debug print removed

parent 702779f2
No related branches found
No related tags found
1 merge request!143voucher should keep information about person who issued it
......@@ -37,6 +37,5 @@ class KitRequestEmailSendJobTests(LoggedInTestCase):
status = job.do()
self.assertEqual("mail sent", status)
print len(mail.outbox)
self.assertEqual(1, len(mail.outbox))
self.assertEqual(workers_count, Worker.objects.all().count())
......@@ -50,7 +50,6 @@ class VoucherTypeViewTests(LoggedInTestCase):
url = reverse('web.views.voucher_add') + '?study_subject_id=' + str(study_subject.id)
response = self.client.post(url, data=form_data)
print response.content
self.assertEqual(response.status_code, 302)
self.assertEqual(1, Voucher.objects.all().count())
......
......@@ -34,7 +34,6 @@ class VoucherTypeViewTests(LoggedInTestCase):
url = reverse('web.views.voucher_partner_sessions_add', kwargs={'pk': voucher.id})
response = self.client.post(url, data=form_data)
print response.content
self.assertEqual(response.status_code, 302)
voucher = Voucher.objects.get(id=voucher.id)
......@@ -55,7 +54,6 @@ class VoucherTypeViewTests(LoggedInTestCase):
url = reverse('web.views.voucher_partner_sessions_add', kwargs={'pk': voucher.id})
response = self.client.post(url, data=form_data)
print response.content
self.assertEqual(response.status_code, 302)
voucher = Voucher.objects.get(id=voucher.id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment