Skip to content

Commit

Permalink
renaming integration_test_plugin function
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Wolf committed Jul 23, 2015
1 parent 0643501 commit 0541972
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


@init
def init_test_source_directory(project):
def initialize_integrationtest_plugin(project):
project.set_property_if_unset(
"dir_source_integrationtest_python", "src/integrationtest/python")
project.set_property_if_unset("integrationtest_file_glob", "*_tests.py")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
TaskPoolProgress,
add_additional_environment_keys,
ConsumingQueue,
init_test_source_directory
initialize_integrationtest_plugin
)


Expand All @@ -52,7 +52,7 @@ def test_should_leave_user_specified_properties_when_initializing_plugin(self):
for property_name, property_value in expected_properties.items():
self.project.set_property(property_name, property_value)

init_test_source_directory(self.project)
initialize_integrationtest_plugin(self.project)

for property_name, property_value in expected_properties.items():
self.assertEquals(
Expand Down

0 comments on commit 0541972

Please sign in to comment.