mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
Since it finally works as expected now, I also updated test data files to include this extra line feed required by PEP8.
7 lines
116 B
Python
7 lines
116 B
Python
from unittest import TestCase
|
|
|
|
|
|
class MyTest(TestCase):
|
|
def test_pass(self):
|
|
self.assertEqual(1 + 1, 2)
|