Skip to content

Commit d107a52

Browse files
committed
Update pdo_sqlsrvTest.php
1 parent fea351f commit d107a52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pdo/pdo_sqlsrvTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public function testSelecting()
199199
public function testWhereGrouping()
200200
{
201201
$this->assertTrue($this->object->connect('sqlsrv:Server=' . self::TEST_DB_HOST . ';Database=' . self::TEST_DB_NAME, self::TEST_DB_USER, self::TEST_DB_PASSWORD));
202-
$this->object->query('CREATE TABLE unit_test_other(id integer, test_key varchar(50), active_data tinyint(1), PRIMARY KEY (ID))');
202+
$this->object->query('CREATE TABLE unit_test_other(id integer, test_key varchar(50), active_data integer, PRIMARY KEY (ID))');
203203
$this->object->insert('unit_test_other', array('id' => 1, 'test_key' => 'testing 1', 'active_data' => 1));
204204
$this->object->insert('unit_test_other', array('id' => 2, 'test_key' => 'testing 2', 'active_data' => 0));
205205
$this->object->insert('unit_test_other', array('id' => 3, 'test_key' => 'testing 3', 'active_data' => 1));

0 commit comments

Comments
 (0)