This is the code that fixes the unit test.
def valid_url(url: str):
    if not url.startswith("https://"):
        if not url.startswith("http://"):
            return False
    return True
The main point here is not that we're done writing code or that we're done writing unit tests. Rather that we've got a like-able workflow here.