Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 22, 2024
1 parent 6aa7f67 commit 1cac83a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testUserAgentsAllowed.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="data-provider-inte

var failed = [];
var res = "";
var result = "";

for ( var UA in userAgents ){
http url="https://update.lucee.org/" userAgent=#UA# result="res";
results = "cfhttp with [#UA#] returned #res.status_code#";
result = "cfhttp with [#UA#] returned #res.status_code#";
if ( res.status_code neq 200 ){
arrayAppend( failed, result );
} else {
Expand Down

0 comments on commit 1cac83a

Please sign in to comment.