Skip to content

Commit

Permalink
Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
D8H committed Nov 29, 2023
1 parent 4f4a341 commit 58ccfd8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions GDevelop.js/__tests__/MetadataDeclarationHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('MetadataDeclarationHelper', () => {
expect(condition.getFullName()).toBe('Some value');
expect(condition.getDescription()).toBe('Compare some value.');
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe('some value _PARAM1_ _PARAM2_');
expect(condition.getSentence()).toBe('Some value _PARAM1_ _PARAM2_');

extension.delete();
project.delete();
Expand Down Expand Up @@ -486,7 +486,7 @@ describe('MetadataDeclarationHelper', () => {
expect(condition.getDescription()).toBe('Compare some value.');
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe(
'some value of _PARAM0_ _PARAM2_ _PARAM3_'
'Some value of _PARAM0_ _PARAM2_ _PARAM3_'
);

expect(condition.getParametersCount()).toBe(5);
Expand Down Expand Up @@ -635,7 +635,7 @@ describe('MetadataDeclarationHelper', () => {
);
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe(
'the property value for the some value of _PARAM0_ _PARAM2_ _PARAM3_'
'The property value for the some value of _PARAM0_ _PARAM2_ _PARAM3_'
);
expect(condition.isHidden()).toBe(false);
expect(condition.isPrivate()).toBe(true);
Expand Down Expand Up @@ -819,7 +819,7 @@ describe('MetadataDeclarationHelper', () => {
);
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe(
'the property value for the some value of _PARAM0_ _PARAM2_ _PARAM3_'
'The property value for the some value of _PARAM0_ _PARAM2_ _PARAM3_'
);
expect(condition.isHidden()).toBe(false);
expect(condition.isPrivate()).toBe(true);
Expand Down Expand Up @@ -1233,7 +1233,7 @@ describe('MetadataDeclarationHelper', () => {
expect(condition.getDescription()).toBe('Compare some value.');
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe(
'some value of _PARAM0_ _PARAM1_ _PARAM2_'
'Some value of _PARAM0_ _PARAM1_ _PARAM2_'
);

expect(condition.getParametersCount()).toBe(4);
Expand Down Expand Up @@ -1369,7 +1369,7 @@ describe('MetadataDeclarationHelper', () => {
);
// The IDE fixes the first letter case.
expect(condition.getSentence()).toBe(
'the property value for the some value of _PARAM0_ _PARAM1_ _PARAM2_'
'The property value for the some value of _PARAM0_ _PARAM1_ _PARAM2_'
);
expect(condition.isHidden()).toBe(false);
expect(condition.isPrivate()).toBe(true);
Expand Down

0 comments on commit 58ccfd8

Please sign in to comment.