Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mttrbrts authored Oct 23, 2023
1 parent 75e8485 commit b4f4e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/concerto-core/test/introspect/scalars.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ describe('Scalars', () => {
it('should handle arrays correctly', () => {
const p = new Field(mockClassDeclaration, {
$class: `${MetaModelNamespace}.StringProperty`,
name: "property",
name: 'property',
array: true
});
p.getScalarField().isArray().should.equal(true);
Expand All @@ -183,7 +183,7 @@ describe('Scalars', () => {
it('should handle non-arrays correctly', () => {
const p = new Field(mockClassDeclaration, {
$class: `${MetaModelNamespace}.StringProperty`,
name: "property",
name: 'property',
});
p.getScalarField().isArray().should.equal(false);
});
Expand Down

0 comments on commit b4f4e9a

Please sign in to comment.