Skip to content

Commit 15e6f82

Browse files
author
d.kovalenko
committed
[test] SetOptionValueItem/test_set001__common.py is updated
- code is corrected [flake8] - assert is added
1 parent 89e4a5a commit 15e6f82

File tree

1 file changed

+2
-1
lines changed
  • tests/implementation/v00/configuration_std/Objects/PostgresConfiguration/SetOptionValueItem

1 file changed

+2
-1
lines changed

tests/implementation/v00/configuration_std/Objects/PostgresConfiguration/SetOptionValueItem/test_set001__common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def test_002(self, request: pytest.FixtureRequest):
9191
)
9292
)
9393

94-
optValueWillBeAdded = not optValue in index
94+
optValueWillBeAdded = not (optValue in index)
95+
assert type(optValueWillBeAdded) == bool
9596

9697
if optValueWillBeAdded:
9798
expectedValue.append(optValue)

0 commit comments

Comments
 (0)