Skip to content

Commit

Permalink
Testing_Bears.rst: Convert result to list
Browse files Browse the repository at this point in the history
The arguments enclosed and comma added.

Closes coala#3770
dristibutola committed Feb 28, 2017
1 parent b5298b5 commit dd1a7c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/Developers/Testing_Bears.rst
Original file line number Diff line number Diff line change
@@ -124,9 +124,9 @@ passed.
self.check_results(
self.uut,
file,
Result.from_values("TooManyLinesBear",
"Too many lines"
settings={'max_number_of_lines': int=20}))
[Result.from_values('TooManyLinesBear',
'Too many lines',
settings={'max_number_of_lines': int=20})])
``check_results`` asserts if your bear results match the actual
results on execution on CLI. Just like the above example, we need to ``setUp``

0 comments on commit dd1a7c7

Please sign in to comment.