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

Possible Coding Error in 6_5_23_1 #90

Closed
jbobzin-insyde opened this issue Mar 3, 2018 · 1 comment · Fixed by #92
Closed

Possible Coding Error in 6_5_23_1 #90

jbobzin-insyde opened this issue Mar 3, 2018 · 1 comment · Fixed by #92
Assignees

Comments

@jbobzin-insyde
Copy link

I am seeing random failures of this test.
I believe it is because these lines are out of order -
count = 0
for relative_uri in relative_uris:
count is used below to get a count of member_array, but the the initialize of count is out of the for loop. So the starting point is random based on last page checked.
count = count+1
This loop
for m in member_array:
is poor python - should really use len(member_array)

@billdodd
Copy link
Contributor

billdodd commented Mar 7, 2018

See also issue #81

@billdodd billdodd self-assigned this Mar 7, 2018
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 a pull request may close this issue.

2 participants