diff --git a/core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php b/core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php index 2c1c8d3566..892c82f2d4 100644 --- a/core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php +++ b/core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php @@ -268,8 +268,8 @@ public function testJsonSchema(): void { ':key' => 'key', ]); $actual = $query->execute()->fetchField(); - $this->assertSame('"'. 'value' . '"', $actual); - // Testing nested strings using '->>' opearator. + $this->assertSame('"' . 'value' . '"', $actual); + // Testing nested strings using '->>' operator. $query = $this->connection->select('test_json'); $query->addExpression('test_field -> :nested ->> :key', NULL, [ ':nested' => 'nested',