def test_short_bubble_sort(self):
     sortedList = BubbleSort.short_bubble_sort(self.targetList)
     self.assertTrue(sortedList == self.checkList)