-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
task #23 Vnaida/homework lesson 23 lambda homework #144
task #23 Vnaida/homework lesson 23 lambda homework #144
Conversation
|
||
foreach (var item in myList) | ||
{ | ||
if (item.Length == 3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
by "Uncomment and implement without lambda functions" I meant not just some random lambda which fits Assert, but to rewrite previous test Test_Where_Lambda without lambda here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
|
||
foreach (var item in myList) | ||
{ | ||
if (item.Length <= 2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the same here. I meant condition "Length > 0"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vldemyan i'll update the tests to be aligned with logic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
No description provided.