Skip to content

Commit f732195

Browse files
committed
AC-2123: Fixed failures Integration Test in CI for AWS Aurora
- added additional test coverage for ExpressionConverter::shortenEntityName
1 parent 5ce6bba commit f732195

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/internal/Magento/Framework/DB/Test/Unit/ExpressionConverterTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,16 @@ public function shortenEntityNameDataProvider()
3939
'pre_',
4040
'pre_'
4141
],
42+
'Hashed identifer with long prefix' => [
43+
$length64 . '_cannotBeAbbreviated',
44+
'pre_' . $length40,
45+
'8d703c761bf8a322a999'
46+
],
4247
'Abbreviated identifier' => [
4348
$length40 . 'downloadable_notification_index',
4449
'pre_',
4550
$length40 . 'dl_ntfc_idx'
46-
],
51+
]
4752
];
4853
}
4954

0 commit comments

Comments
 (0)