Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. from search import binary_search_by_distance
  2. import unittest
  3.  
  4.  
  5. class TestSearch(unittest.TestCase):
  6.  
  7.     def test_changed_letter(self, dictionary):
  8.         # test values with changed non-first letter
  9.         self.assertEquals(binary_search_by_distance("ananos", dictionary), True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement