Skip to content

Commit

Permalink
Change format of ABAP JAVA system type (#2855)
Browse files Browse the repository at this point in the history
  • Loading branch information
EMaksy authored Aug 5, 2024
1 parent 02732f8 commit 06fd262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function SapSystemsOverview({
.filter((item) => item === 'J2EE' || item === 'ABAP')
.map((item) => (item === 'J2EE' ? 'JAVA' : item))
.toSorted()
.join('/'),
.join('+'),
},

{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('SapSystemsOverviews component', () => {
});

it('should display the correct SAP system type JAVA and ABAP', () => {
const expectedSapSystemTypes = 'ABAP/JAVA';
const expectedSapSystemTypes = 'ABAP+JAVA';
const sapSystemID = faker.string.uuid();
const sapSystem = sapSystemFactory.build({
id: sapSystemID,
Expand Down

0 comments on commit 06fd262

Please sign in to comment.