Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: capitalize SELECT statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Jun 20, 2023
1 parent 45c3fcf commit 5a6773f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion force-app/main/default/classes/CsvToJsonConversionTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public with sharing class CsvToJsonConversionTest {
@IsTest
public static void convertCsvToJsonContacts() {
// Load CSV data as a blob from static resource
Blob data = [Select Body
Blob data = [SELECT Body
FROM
StaticResource
WHERE
Expand Down
4 changes: 2 additions & 2 deletions force-app/main/default/classes/CsvToObjectTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public with sharing class CsvToObjectTest {
@IsTest
public static void convertCsvToObjects() {
// Load CSV data as a blob from static resource
Blob data = [Select Body
Blob data = [SELECT Body
FROM
StaticResource
WHERE
Expand Down Expand Up @@ -35,7 +35,7 @@ public with sharing class CsvToObjectTest {
@IsTest
public static void convertLargeCsvToObjects() {
// Load CSV data as a blob from static resource
Blob data = [Select Body
Blob data = [SELECT Body
FROM
StaticResource
WHERE
Expand Down

0 comments on commit 5a6773f

Please sign in to comment.