diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 5643ea9..c5536fe 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -20,7 +20,7 @@ jobs: echo "import unittest" > test_sample.py echo "class TestSample(unittest.TestCase):" >> test_sample.py echo " def test_example(self):" >> test_sample.py - echo " assert 1 + 1 == 3" >> test_sample.py + echo " assert 1 + 1 == 2" >> test_sample.py echo "if __name__ == '__main__':" >> test_sample.py echo " unittest.main()" >> test_sample.py