Skip to content

Commit

Permalink
disable test case using a external resource that no longer exist
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 31, 2024
1 parent a6cce72 commit f2c3977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functions/ImageDrawBeveledRect.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ component extends = "org.lucee.cfml.test.LuceeTestCase" labels="image" {
expect(fileexists(path&'imgDrawimg.jpg')).tobe("true");
});

it(title = "Checking with image.drawBeveledRect()", body = function( currentSpec ){
it(title = "Checking with image.drawBeveledRect()",skip=true, body = function( currentSpec ){
var img = imageNew("", 400, 400);
img.DrawBeveledRect(100,40,50,30,"yes","yes");
cfimage(action = "write", source = img, destination = path&'objDrawbevelrect.jpg', overwrite = "yes");
Expand Down

0 comments on commit f2c3977

Please sign in to comment.