Skip to content

Commit

Permalink
improve test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 5, 2023
1 parent fe55f1a commit bc0687a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/general/VFSvsDirect.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
// must exists now (direct approach with implicit credentials)
assertTrue(S3Exists( bucketName:bucketName, objectName:objectName?:nullValue()));
// must exists now (VFS approach with explicit credentials)
assertTrue(fileExists(pathWithCred));
assertTrue(fileExists(pathWithCred),path);
// must exists now (VFS approach with implicit credentials)
assertTrue(fileExists(path));
assertTrue(fileExists(path),path);

////////////////////////////////////////////////////////////////////////
// deleteing the file again
Expand Down Expand Up @@ -222,7 +222,6 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
}
}


private function toList(arr,key){
var rtn="";
loop array=arr item="local.sct" {
Expand Down

0 comments on commit bc0687a

Please sign in to comment.