aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test
diff options
context:
space:
mode:
authorRaimo Niskanen <[email protected]>2018-07-26 10:06:13 +0200
committerRaimo Niskanen <[email protected]>2018-07-27 10:16:17 +0200
commit1fd03472d3d57e57ae4ebcbf0109f82dce14b90c (patch)
treed7efb04788cc7c5783bcdd41cf9224bcdc60ca81 /lib/common_test
parentd7e303cb7981e2ceb0eb0074cf7402feec5da868 (diff)
downloadotp-1fd03472d3d57e57ae4ebcbf0109f82dce14b90c.tar.gz
otp-1fd03472d3d57e57ae4ebcbf0109f82dce14b90c.tar.bz2
otp-1fd03472d3d57e57ae4ebcbf0109f82dce14b90c.zip
Remove newline between can and not
After this whitespace modification there should be no "can not"s separated by a newline in the entire OTP repository, so to find them all a simple git grep will do just fine.
Diffstat (limited to 'lib/common_test')
-rw-r--r--lib/common_test/doc/src/notes.xml4
-rw-r--r--lib/common_test/src/ct_release_test.erl4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index c8005d8f79..0bc3dbf4a0 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -2755,8 +2755,8 @@
The info function for <c>init/end_per_suite(Config)</c>
is <c>init/end_per_suite()</c>, and for
<c>init/end_per_group(GroupName,Config)</c> it's
- <c>init/end_per_group(GroupName)</c>. Info functions can
- not be used with <c>init/end_per_testcase(TestCase,
+ <c>init/end_per_group(GroupName)</c>. Info functions
+ can not be used with <c>init/end_per_testcase(TestCase,
Config)</c>, since these configuration functions execute
on the test case process and will use the same properties
as the test case (i.e. properties set by the test case
diff --git a/lib/common_test/src/ct_release_test.erl b/lib/common_test/src/ct_release_test.erl
index 60d17f43dc..681bdf2426 100644
--- a/lib/common_test/src/ct_release_test.erl
+++ b/lib/common_test/src/ct_release_test.erl
@@ -152,8 +152,8 @@
%% returned configuration must therefore also be returned from
%% the calling `init_per_*'.
%%
-%% If the initialization fails, e.g. if a required release can
-%% not be found, the function returns `{skip,Reason}'. In
+%% If the initialization fails, e.g. if a required release
+%% can not be found, the function returns `{skip,Reason}'. In
%% this case the other test support functions in this mudule
%% can not be used.
%%