Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fornellas committed Dec 17, 2019
1 parent 831334d commit c40ae9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testslide/mock_callable.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def _validate_patch(
if (
coroutine_function
and (
# FIXME We cant reliably introspect coroutine functions
# FIXME We can not reliably introspect coroutine functions
# for builtins: https://bugs.python.org/issue38225
type(template_value) is not type(list.append)
and not inspect.iscoroutinefunction(template_value)
Expand Down Expand Up @@ -646,7 +646,7 @@ def _validate_patch(
if (
coroutine_function
and (
# FIXME We cant reliably introspect coroutine functions
# FIXME We can not reliably introspect coroutine functions
# for builtins: https://bugs.python.org/issue38225
type(original_callable) is not type(list.append)
and not inspect.iscoroutinefunction(original_callable)
Expand Down

0 comments on commit c40ae9a

Please sign in to comment.