Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
ab4b4235
Commit
ab4b4235
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge pull request #3712 from GPCsolutions/fixunittests
Fix unittests regression
parents
796a87e2
b785db86
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/core/modules/modWebServicesClient.class.php
+1
-1
1 addition, 1 deletion
htdocs/core/modules/modWebServicesClient.class.php
htdocs/install/filelist.xml
+1
-1
1 addition, 1 deletion
htdocs/install/filelist.xml
test/phpunit/ModulesTest.php
+1
-1
1 addition, 1 deletion
test/phpunit/ModulesTest.php
with
3 additions
and
3 deletions
htdocs/core/modules/modWebServicesClient.class.php
+
1
−
1
View file @
ab4b4235
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
/**
/**
* \defgroup webservices Module webservices
* \defgroup webservices Module webservices
* \brief Module to enable client for supplier WebServices
* \brief Module to enable client for supplier WebServices
* \file htdocs/core/modules/mod
SyncSupplier
WebServices.class.php
* \file htdocs/core/modules/modWebServices
Client
.class.php
* \ingroup webservices
* \ingroup webservices
* \brief File to describe client for supplier webservices module
* \brief File to describe client for supplier webservices module
*/
*/
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/filelist.xml
+
1
−
1
View file @
ab4b4235
...
@@ -6873,7 +6873,7 @@
...
@@ -6873,7 +6873,7 @@
<md5file name="modCashDesk.class.php">69982f8171837cd8669bfe9c2f08dc8f</md5file>
<md5file name="modCashDesk.class.php">69982f8171837cd8669bfe9c2f08dc8f</md5file>
<md5file name="modLdap.class.php">ddf6dfeb77c98411b4d5434f20c24483</md5file>
<md5file name="modLdap.class.php">ddf6dfeb77c98411b4d5434f20c24483</md5file>
<md5file name="modFacture.class.php">c23010fa68c5996cb5977f84a6bb7ceb</md5file>
<md5file name="modFacture.class.php">c23010fa68c5996cb5977f84a6bb7ceb</md5file>
<md5file name="mod
SyncSupplier
WebServices.class.php">
90a300e9bd857966226c68dca8660456
</md5file>
<md5file name="modWebServices
Client
.class.php">
822961d86ae558588632b3b08c085b89
</md5file>
<md5file name="index.html">d41d8cd98f00b204e9800998ecf8427e</md5file>
<md5file name="index.html">d41d8cd98f00b204e9800998ecf8427e</md5file>
<md5file name="modIncoterm.class.php">b4e9f07aa5268af49d3bb9429719b201</md5file>
<md5file name="modIncoterm.class.php">b4e9f07aa5268af49d3bb9429719b201</md5file>
<md5file name="modFTP.class.php">8293bd60fe13ac64c22f8500b346821c</md5file>
<md5file name="modFTP.class.php">8293bd60fe13ac64c22f8500b346821c</md5file>
...
...
This diff is collapsed.
Click to expand it.
test/phpunit/ModulesTest.php
+
1
−
1
View file @
ab4b4235
...
@@ -133,7 +133,7 @@ class ModulesTest extends PHPUnit_Framework_TestCase
...
@@ -133,7 +133,7 @@ class ModulesTest extends PHPUnit_Framework_TestCase
'Facture'
,
'Fckeditor'
,
'Ficheinter'
,
'Fournisseur'
,
'FTP'
,
'GeoIPMaxmind'
,
'Gravatar'
,
'Holiday'
,
'Import'
,
'Label'
,
'Ldap'
,
'Facture'
,
'Fckeditor'
,
'Ficheinter'
,
'Fournisseur'
,
'FTP'
,
'GeoIPMaxmind'
,
'Gravatar'
,
'Holiday'
,
'Import'
,
'Label'
,
'Ldap'
,
'Mailing'
,
'MailmanSpip'
,
'Margin'
,
'Mailing'
,
'MailmanSpip'
,
'Margin'
,
'Notification'
,
'OpenSurvey'
,
'Paybox'
,
'Paypal'
,
'Prelevement'
,
'Product'
,
'ProductBatch'
,
'Projet'
,
'Propale'
,
'Notification'
,
'OpenSurvey'
,
'Paybox'
,
'Paypal'
,
'Prelevement'
,
'Product'
,
'ProductBatch'
,
'Projet'
,
'Propale'
,
'Salaries'
,
'Service'
,
'Skype'
,
'Societe'
,
'Stock'
,
'
SyncSupplier
WebServices'
,
'Syslog'
,
'Tax'
,
'User'
,
'WebServices'
,
'Workflow'
);
'Salaries'
,
'Service'
,
'Skype'
,
'Societe'
,
'Stock'
,
'WebServices
Client
'
,
'Syslog'
,
'Tax'
,
'User'
,
'WebServices'
,
'Workflow'
);
foreach
(
$modulelist
as
$modlabel
)
foreach
(
$modulelist
as
$modlabel
)
{
{
require_once
(
DOL_DOCUMENT_ROOT
.
'/core/modules/mod'
.
$modlabel
.
'.class.php'
);
require_once
(
DOL_DOCUMENT_ROOT
.
'/core/modules/mod'
.
$modlabel
.
'.class.php'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment