Remove withConsecutive() in pgsql SchemaTest.
1 open thread
Closes #3417531
Merge request reports
Activity
37 38 $statement = $this->prophesize('\Drupal\Core\Database\StatementInterface'); 39 $statement->fetchField()->willReturn($max_identifier_length); 40 $connection->query('SHOW max_identifier_length')->willReturn($statement->reveal()); 57 41 58 $this->connection->expects($this->exactly(2)) 59 ->method('query') 60 ->withConsecutive( 61 [$this->anything()], 62 ["SELECT 1 FROM pg_constraint WHERE conname = '$expected'"], 63 ) 64 ->willReturnOnConsecutiveCalls( 65 $statement, 66 $this->createMock('\Drupal\Core\Database\StatementInterface'), 67 ); 42 $connection->query("SELECT 1 FROM pg_constraint WHERE conname = '$expected'") changed this line in version 2 of the diff
Please register or sign in to reply