Skip to content

Commit c078c52

Browse files
committed
fix test
1 parent 2300690 commit c078c52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/__init__.py

Whitespace-only changes.

tests/noscrape_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def test_noscrape(self):
88
n = Noscrape("../example/example.ttf")
99

1010
xy = n.obfuscate("test")
11-
self.assertNotEquals(xy, "test")
11+
self.assertNotEqual(xy, "test")
1212

1313
xyz = n.render()
14-
self.assertNotEquals(xyz, "test")
14+
self.assertNotEqual(xyz, "test")
1515

1616

1717
if __name__ == '__main__':

0 commit comments

Comments
 (0)