PyTest - Basics and Setup
Identify the error in this unittest test case that will cause it to fail to run:
import unittest
class TestMath(unittest.TestCase):
def test_add(self):
assert 1 + 1 == 2