Skip to content
Snippets Groups Projects
Commit 6a8664c2 authored by Jammer, Tim's avatar Jammer, Tim
Browse files

fix if condition

parent d3163c78
Branches
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ class InvalidRankErrorColl(ErrorGenerator): ...@@ -38,7 +38,7 @@ class InvalidRankErrorColl(ErrorGenerator):
call.set_has_error() call.set_has_error()
yield tm yield tm
if not generate_level <= BASIC_TEST_LEVEL: if generate_level <= BASIC_TEST_LEVEL:
break break
# basic test level only tests each error once, no need to loop all functions # basic test level only tests each error once, no need to loop all functions
...@@ -54,5 +54,5 @@ class InvalidRankErrorColl(ErrorGenerator): ...@@ -54,5 +54,5 @@ class InvalidRankErrorColl(ErrorGenerator):
if func1 != func2: # we want different functions if func1 != func2: # we want different functions
yield tm yield tm
if not generate_level <= BASIC_TEST_LEVEL: if generate_level <= BASIC_TEST_LEVEL:
return return
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment