Skip to content

Commit 078b953

Browse files
committed
Fix typo
1 parent 9b10929 commit 078b953

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/Contributing-code.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ python unittest module works doesn't allow to define for example
8484
test methods named "test_1_initialize", "test_2_some", "test_3_shutdown",
8585
after doing so some strange things happen (maybe unittest is
8686
running these methods in separate threads). So with these
87-
restrictions the way it works currently is that there is ongle
88-
single method named "test_main" in which muliple sub-tests are
89-
run. A function named "subtest_message" was defined to be able
87+
restrictions the way it works currently is that there is a
88+
single method named test_main() in which muliple sub-tests are
89+
run. A function named subtest_message() was defined to be able
9090
to output results of the multiple subtests that are running inside
91-
the "test_main" method.
91+
the test_main() method.
9292

93-
In main_test.py there were implemented automated checks in handlers
94-
and in the external object. When class (handler or external)
93+
In main_test.py there were implemented automated assert checks
94+
in handlers and in the external object. When class (handler or external)
9595
defines a property that ends with "_True" or "_False" then it will
9696
be automatically checked whether it asserts to these values just
9797
before CEF shutdown. There is one limitation for these type

0 commit comments

Comments
 (0)