7 lines
238 B
Python
7 lines
238 B
Python
from unittest import TestCase
|
|
from benchmark.longest_substring import longest_sorted_substr
|
|
|
|
|
|
class Test_longest_sorted_substr(TestCase):
|
|
def test_longest_sorted_substr_1(self):
|
|
assert longest_sorted_substr(s='sixBa') == 'ix'
|