Skip to content

Commit c8f72ec

Browse files
committed
remove duplicated test
Signed-off-by: Fawzi E. Abdulfattah <[email protected]>
1 parent bd86fb3 commit c8f72ec

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/Builder/CreateStatementTest.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -324,17 +324,6 @@ public function testBuilderView(): void
324324
$stmt->build()
325325
);
326326

327-
$parser = new Parser(
328-
'CREATE OR REPLACE VIEW myView (vid, vfirstname) AS ' .
329-
'SELECT id, first_name, FROMzz employee WHERE id = 1'
330-
);
331-
$stmt = $parser->statements[0];
332-
$this->assertEquals(
333-
'CREATE OR REPLACE VIEW myView (vid, vfirstname) AS ' .
334-
'SELECT id, first_name, FROMzz employee WHERE id = 1 ',
335-
$stmt->build()
336-
);
337-
338327
$parser = new Parser(
339328
'CREATE OR REPLACE VIEW myView (vid, vfirstname) AS ' .
340329
'SELECT id, first_name, FROMzz employee WHERE id = 1 ' .

0 commit comments

Comments
 (0)