Skip to content
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

Fix db transfers test login #121

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zachovich
Copy link

The way Golang process logical OR operation is that, if the left
hand side expression is true, the OR expression returns true
without executing the right hand side expression. This is called
short circuiting.

Using OR operation in this test will secceed even if the right
hand side is false.

This commit exchange the OR with AND expression which requires
both left and right hand sides to be true which is the correct
logic for this test.

hand side expression is true, the OR expression returns true
without executing the right hand side expression. This is called
short circuiting.

Using OR operation in this test will secceed even if the right
hand side is false.

This commit exchange the OR with AND expression which requires
both left and right hand sides to be true which is the correct
logic for this test.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant