Skip to content

Commit

Permalink
improve output
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 22, 2024
1 parent fbdbba0 commit 884cff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/testMavenMappings.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="data-provider-inte
// systemOutput( "checking #mapping.toJson()#", true );
try {
meta = mavenMatcher.getMatch( mapping, "latest" );
systemOutput( mapping, true );
systemOutput( meta.toJson(), true );
systemOutput( mapping & ": " meta.toJson(), true );
} catch( e ) {
arrayAppend(missing, " #mapping# threw #e.message##chr(10)#, mapping: #mappings[mapping].toJson()# ");
}
Expand Down
2 changes: 1 addition & 1 deletion tests/testStableReleaseBundles.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="data-provider-inte
bundleSpec = listFirst( bundle,";" ) & "/" & listLast( listLast( bundle, ";" ), "=" );
http url="https://update.lucee.org/rest/update/provider/download/#bundleSpec#/" result="local.res" throwOnError=true;
} catch ( e ) {
systemOutput( e.message, true );
systemOutput( "https://update.lucee.org/rest/update/provider/download/#bundleSpec#/ threw [" & e.message & "]", true );
arrayAppend( missing, bundle );
}
}
Expand Down

0 comments on commit 884cff7

Please sign in to comment.