mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec) GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
8 lines
164 B
Python
8 lines
164 B
Python
import unittest
|
|
|
|
|
|
class ExpectedFailureTestCase(unittest.TestCase):
|
|
@unittest.expectedFailure
|
|
def test_fail(self):
|
|
self.assertEqual(1, 0, "broken")
|