We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/zedshaw/liblcthw/blob/master/tests/list_algos_tests.c#L54
Here we are calling List_create, a function that until now has taken no args, on words, which is the list of words that we just destroyed.
List_create
words
Should this line be words = create_words();?
words = create_words();
The text was updated successfully, but these errors were encountered:
Oh, on second thought, that test case needs to be an empty list.
Should it be words = List_create();?
words = List_create();
Sorry, something went wrong.
I was able to get the test to pass after changing it to words = List_create() which seems to make more sense. I'll make a PR.
words = List_create()
No branches or pull requests
https://github.com/zedshaw/liblcthw/blob/master/tests/list_algos_tests.c#L54
Here we are calling
List_create
, a function that until now has taken no args, onwords
, which is the list of words that we just destroyed.Should this line be
words = create_words();
?The text was updated successfully, but these errors were encountered: