Skip to content

Commit

Permalink
Applying format
Browse files Browse the repository at this point in the history
  • Loading branch information
torcato committed Aug 7, 2024
1 parent f2765f1 commit feaaab3
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ import raw.testing.tags.TruffleTests

// Testing the automatic casting from url to S3Location
test(s"""let
| data = Csv.InferAndRead("s3://$UnitTestPublicBucket/students.csv")
|in
| Collection.Count(data)
|""".stripMargin)(it => it should evaluateTo("7"))
| data = Csv.InferAndRead("s3://$UnitTestPublicBucket/students.csv")
|in
| Collection.Count(data)
|""".stripMargin)(it => it should evaluateTo("7"))

// Reading a private bucket with credentials in the code
test(s"""let
Expand Down Expand Up @@ -74,8 +74,8 @@ import raw.testing.tags.TruffleTests

// Using the automatic casting from url to S3Location using credentials
test(s"""let
| data = Csv.InferAndRead("s3://$UnitTestPrivateBucket/students.csv")
|in
| Collection.Count(data)
|""".stripMargin)(it => it should evaluateTo("7"))
| data = Csv.InferAndRead("s3://$UnitTestPrivateBucket/students.csv")
|in
| Collection.Count(data)
|""".stripMargin)(it => it should evaluateTo("7"))
}

0 comments on commit feaaab3

Please sign in to comment.