Remove the unnecessary check in the end of setclass
This commit is contained in:
parent
a1c8217260
commit
0b9f32a7d2
|
@ -144,12 +144,8 @@ def setclass(logger):
|
||||||
assert random_class_type in line
|
assert random_class_type in line
|
||||||
# check class source
|
# check class source
|
||||||
assert 'set_class' in line
|
assert 'set_class' in line
|
||||||
# set back to default
|
# set back to unset
|
||||||
run_fdbcli_command('setclass', random_address, 'default')
|
run_fdbcli_command('setclass', random_address, 'unset')
|
||||||
output3 = run_fdbcli_command('setclass')
|
|
||||||
logger.debug(output3)
|
|
||||||
# everything should be back to the same as before
|
|
||||||
assert output1 == output3
|
|
||||||
|
|
||||||
|
|
||||||
@enable_logging()
|
@enable_logging()
|
||||||
|
|
Loading…
Reference in New Issue