Fix: phpunit

This commit is contained in:
Laurent Destailleur 2014-07-08 21:04:17 +02:00
parent 7cbee97f6e
commit 932206a152
2 changed files with 2 additions and 3 deletions

View File

@ -21,7 +21,7 @@ create table llx_localtax
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
entity integer DEFAULT 1 NOT NULL,
localtaxtype tinyint(4),
localtaxtype tinyint,
tms timestamp,
datep date, -- date of payment
datev date, -- date of value
@ -31,5 +31,4 @@ create table llx_localtax
fk_bank integer,
fk_user_creat integer,
fk_user_modif integer
)ENGINE=innodb;

View File

@ -152,7 +152,7 @@ class SqlTest extends PHPUnit_Framework_TestCase
$this->assertTrue($result===false);
$result=strpos($filecontent,'int(');
print __METHOD__." Result for checking we don't have back 'int(' instead of integer = ".$result."\n";
print __METHOD__." Result for checking we don't have 'int(' instead of 'integer' = ".$result."\n";
$this->assertTrue($result===false);
}