Skip to content

Commit

Permalink
LPD-43431 Avoid case-sensitive issues on PSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
nNilton authored and brianchandotcom committed Dec 4, 2024
1 parent 62646e3 commit 103d781
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"articleId": "test-journal-article-1",
"articleId": "TEST-JOURNAL-ARTICLE-1",
"ddmStructureKey": "TEST DDM STRUCTURE NAME",
"ddmTemplateKey": "TEST DDM TEMPLATE KEY 1",
"folder": "test-journal-article-1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"articleId": "test-journal-article-2",
"articleId": "TEST-JOURNAL-ARTICLE-2",
"ddmStructureKey": "TEST DDM STRUCTURE NAME",
"ddmTemplateKey": "TEST DDM TEMPLATE KEY 1",
"folder": "test-journal-article-2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"articleId": "test-journal-article-1",
"articleId": "TEST-JOURNAL-ARTICLE-1",
"ddmStructureKey": "TEST DDM STRUCTURE NAME",
"ddmTemplateKey": "TEST DDM TEMPLATE KEY 1",
"folder": "test-journal-article-1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"articleId": "test-journal-article-2",
"articleId": "TEST-JOURNAL-ARTICLE-2",
"ddmStructureKey": "TEST DDM STRUCTURE NAME",
"ddmTemplateKey": "TEST DDM TEMPLATE KEY 1",
"folder": "test-journal-article-2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"articleId": "test-journal-article-3",
"articleId": "TEST-JOURNAL-ARTICLE-3",
"ddmStructureKey": "TEST DDM STRUCTURE NAME",
"folder": "test-journal-article-3",
"name": "Test Journal Article 3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1774,7 +1774,7 @@ private void _assertFragmentEntries() throws Exception {
private void _assertJournalArticles1() throws Exception {
JournalArticle journalArticle1 =
_journalArticleLocalService.fetchArticle(
_group.getGroupId(), "test-journal-article-1");
_group.getGroupId(), "TEST-JOURNAL-ARTICLE-1");

Assert.assertNotNull(journalArticle1);
Assert.assertEquals(
Expand All @@ -1784,7 +1784,7 @@ private void _assertJournalArticles1() throws Exception {

JournalArticle journalArticle2 =
_journalArticleLocalService.fetchArticle(
_group.getGroupId(), "test-journal-article-2");
_group.getGroupId(), "TEST-JOURNAL-ARTICLE-2");

Assert.assertNotNull(journalArticle2);
Assert.assertEquals(
Expand Down Expand Up @@ -1814,7 +1814,7 @@ private void _assertJournalArticles1() throws Exception {
private void _assertJournalArticles2() throws Exception {
JournalArticle journalArticle1 =
_journalArticleLocalService.fetchArticle(
_group.getGroupId(), "test-journal-article-1");
_group.getGroupId(), "TEST-JOURNAL-ARTICLE-1");

Assert.assertNotNull(journalArticle1);
Assert.assertEquals(
Expand All @@ -1824,7 +1824,7 @@ private void _assertJournalArticles2() throws Exception {

JournalArticle journalArticle2 =
_journalArticleLocalService.fetchArticle(
_group.getGroupId(), "test-journal-article-2");
_group.getGroupId(), "TEST-JOURNAL-ARTICLE-2");

Assert.assertNotNull(journalArticle2);
Assert.assertEquals(
Expand All @@ -1834,7 +1834,7 @@ private void _assertJournalArticles2() throws Exception {

JournalArticle journalArticle3 =
_journalArticleLocalService.fetchArticle(
_group.getGroupId(), "test-journal-article-3");
_group.getGroupId(), "TEST-JOURNAL-ARTICLE-3");

Assert.assertNotNull(journalArticle3);
Assert.assertTrue(
Expand Down

0 comments on commit 103d781

Please sign in to comment.