Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a few docstring typos in the tests #203

Merged
merged 1 commit into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/SpiffWorkflow/specs/ExecuteTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def testConstructor(self):

def testPattern(self):
"""
Tests that we can create a task that executes an shell command
Tests that we can create a task that executes a shell command
and that the workflow can be called to complete such tasks.
"""
self.wf_spec.start.connect(self.spec)
Expand Down
2 changes: 1 addition & 1 deletion tests/SpiffWorkflow/specs/TransformTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_instance(self):

def testPattern(self):
"""
Tests that we can create a task that executes an shell command
Tests that we can create a task that executes a shell command
and that the workflow can be called to complete such tasks.
"""
task1 = Transform(self.wf_spec, 'First', transforms=[
Expand Down
2 changes: 1 addition & 1 deletion tests/SpiffWorkflow/specs/WorkflowSpecTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def testSerialize(self):

def testValidate(self):
"""
Tests that we can detect when two wait taks are waiting on each
Tests that we can detect when two wait tasks are waiting on each
other.
"""
task1 = Join(self.wf_spec, 'First')
Expand Down