diff --git a/psalm-baseline.xml b/psalm-baseline.xml
index 9b916269d7..bdf1e6cc0b 100644
--- a/psalm-baseline.xml
+++ b/psalm-baseline.xml
@@ -14460,9 +14460,6 @@
-
-
-
diff --git a/tests/unit/Plugins/Export/ExportSqlTest.php b/tests/unit/Plugins/Export/ExportSqlTest.php
index 821d69bd16..51d560a42f 100644
--- a/tests/unit/Plugins/Export/ExportSqlTest.php
+++ b/tests/unit/Plugins/Export/ExportSqlTest.php
@@ -967,9 +967,7 @@ SQL;
);
$result = ob_get_clean();
- $sqlViewsProp = new ReflectionProperty(ExportSql::class, 'sqlViews');
- $sqlViewsProp->setAccessible(true);
- $sqlViews = $sqlViewsProp->getValue($this->object);
+ $sqlViews = (new ReflectionProperty(ExportSql::class, 'sqlViews'))->getValue($this->object);
self::assertEquals('', $result);
self::assertIsString($sqlViews);