Skip to content

Commit

Permalink
fix invalid comparison in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Nov 22, 2023
1 parent 5626a94 commit ca26217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functions/S3ListBucket.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
secretAccessKey:cred.SECRET_KEY,
host:(isNull(cred.HOST)?nullvalue():cred.HOST)
);
assertEquals("->3;2;<-", listener.getData());
assertEquals("-->3;2;<--", listener.getData());
}
catch(e) {
if(!findNoCase("Transaction cap exceeded", e.message) ) throw e;
Expand Down

0 comments on commit ca26217

Please sign in to comment.