Skip to content

Commit

Permalink
style: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dtscalac committed Jan 17, 2025
1 parent 5ba655c commit fae849f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ void main() {
final encodedSchema = originalSchema.toJson();
expect(encodedSchema, isNotEmpty);

final redecodedSchema = DocumentSchemaDto.fromJson(encodedSchema);
final redecodedModel = redecodedSchema.toModel();
expect(redecodedModel, equals(originalModel));
final recodedSchema = DocumentSchemaDto.fromJson(encodedSchema);
final recodedModel = recodedSchema.toModel();
expect(recodedModel, equals(originalModel));
});
});
}

0 comments on commit fae849f

Please sign in to comment.