Skip to content
Snippets Groups Projects
Commit 9ddcfe51 authored by Tobias Ørstad's avatar Tobias Ørstad
Browse files

Update faulty test

parent e3e529e5
No related branches found
No related tags found
1 merge request!15Dev
Pipeline #113590 passed
......@@ -7,10 +7,10 @@ from django.test import TestCase
class TestTestCase(TestCase):
def test_true(self):
"""Animals that can speak are correctly identified"""
"""Check if true is true"""
self.assertTrue(True)
def test_false(self):
"""Animals that can speak are correctly identified"""
self.assertFalse(True)
\ No newline at end of file
"""Check if false is false"""
self.assertFalse(False)
\ No newline at end of file
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