Skip to content

Commit

Permalink
docs: Fix simple typo, existant -> existent
Browse files Browse the repository at this point in the history
There is a small typo in bitfield/tests/tests.py.

Should read `existent` rather than `existant`.
  • Loading branch information
timgates42 authored and timabbott committed Mar 8, 2020
1 parent 7d0ff9a commit 20459fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitfield/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_defaults(self):
self.assertEqual(int(bithandler.FLAG_1.number), 1)
self.assertEqual(int(bithandler.FLAG_2.number), 2)
self.assertEqual(int(bithandler.FLAG_3.number), 3)
# Negative test non-existant key.
# Negative test non-existent key.
self.assertRaises(AttributeError, lambda: bithandler.FLAG_4)
# Test bool().
self.assertEqual(bool(bithandler.FLAG_0), False)
Expand Down

0 comments on commit 20459fc

Please sign in to comment.