Skip to content
Snippets Groups Projects
Commit 1d065e2f authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix deprecation warning from py37

parent 76cf8211
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ class TestCase(unittest.TestCase): ...@@ -29,7 +29,7 @@ class TestCase(unittest.TestCase):
def test_010_Function(self): def test_010_Function(self):
import PyExample import PyExample
self.assertEquals(PyExample.greet(), "hello, world") self.assertEqual(PyExample.greet(), "hello, world")
if __name__ == '__main__': if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment