Skip to content

Commit e06ef1e

Browse files
committed
Merge pull request nuxeo#148 from Sketch/patch-1
Fix various conjugations of 'use'
2 parents b55f52c + 45a0bbe commit e06ef1e

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

doc/source/credential.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The group file format is::
2020
group1:user3
2121
...
2222

23-
The credential server use a configuration file to point to the user
23+
The credential server uses a configuration file to point to the user
2424
and group file and define the listening port::
2525
2626
[server]

doc/source/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Here is an extract of the simple demo test case ``test_Simple.py``::
2222
from funkload.FunkLoadTestCase import FunkLoadTestCase
2323
2424
class Simple(FunkLoadTestCase):
25-
"""This test use a configuration file Simple.conf."""
25+
"""This test uses the configuration file Simple.conf."""
2626
def setUp(self):
2727
"""Setting up test."""
2828
self.server_url = self.conf_get('main', 'url')

doc/source/usage-fl-run-bench.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fl-run-bench [options] file class.method
55

66
fl-run-bench launch a FunkLoad unit test as load test.
77

8-
A FunkLoad unittest use a configuration file named [class].conf, this
8+
A FunkLoad unittest uses a configuration file named [class].conf, this
99
configuration is overriden by the command line options.
1010

1111
See http://funkload.nuxeo.org/ for more information.

doc/source/usage-fl-run-test.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fl-run-test [options] file [class.method|class|suite] [...]
55

66
fl-run-test launch a FunkLoad unit test.
77

8-
A FunkLoad unittest use a configuration file named [class].conf, this
8+
A FunkLoad unittest uses a configuration file named [class].conf, this
99
configuration is overriden by the command line options.
1010

1111
See http://funkload.nuxeo.org/ for more information.

src/funkload/TestRunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class TestProgram(unittest.TestProgram):
226226
227227
%prog launch a FunkLoad unit test.
228228
229-
A FunkLoad unittest use a configuration file named [class].conf, this
229+
A FunkLoad unittest uses a configuration file named [class].conf, this
230230
configuration is overriden by the command line options.
231231
232232
See http://funkload.nuxeo.org/ for more information.

src/funkload/data/MyFacesScriptTestCase.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ from funkload.utils import Data
1212
class %(class_name)s(FunkLoadTestCase):
1313
"""XXX
1414
15-
This test use a configuration file %(class_name)s.conf.
15+
This test uses the configuration file %(class_name)s.conf.
1616
"""
1717
MYFACES_STATE = 'org.apache.myfaces.trinidad.faces.STATE'
1818
MYFACES_FORM = 'org.apache.myfaces.trinidad.faces.FORM'

src/funkload/demo/cmf/test_Cmf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def cmfCreateNews(self, parent_url):
8484
class Cmf(CmfTestCase):
8585
"""Simple test of default CMF Site
8686
87-
This test use a configuration file Cmf.conf.
87+
This test uses the configuration file Cmf.conf.
8888
"""
8989
def setUp(self):
9090
"""Setting up test."""

src/funkload/demo/seam-booking-1.1.5/test_SeamBooking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class SeamBooking(FunkLoadTestCase):
1515
"""Simple test to register a new user and book an hotel.
1616
17-
This test use a configuration file SeamBooking.conf.
17+
This test uses the configuration file SeamBooking.conf.
1818
"""
1919

2020
jsf_tag_tree = '<input type="hidden" name="jsf_tree_64" id="jsf_tree_64" value="'

src/funkload/demo/simple/test_Simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from funkload.FunkLoadTestCase import FunkLoadTestCase
99

1010
class Simple(FunkLoadTestCase):
11-
"""This test use a configuration file Simple.conf."""
11+
"""This test uses the configuration file Simple.conf."""
1212

1313
def setUp(self):
1414
"""Setting up test."""

src/funkload/demo/xmlrpc/test_Credential.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from funkload.FunkLoadTestCase import FunkLoadTestCase
99

1010
class Credential(FunkLoadTestCase):
11-
"""This test use a configuration file Credential.conf."""
11+
"""This test uses the configuration file Credential.conf."""
1212

1313
def setUp(self):
1414
"""Setting up test."""

0 commit comments

Comments
 (0)