Skip to content

Commit

Permalink
LDEV-5183 - switch test case to use gradle style
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent d793439 commit e07c77f
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions test/functions/MavenLoad.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {

it(title="load com.github.tjake", body=function( currentSpec ) {
var l=len(mavenLoad([
{
"groupId" : "com.github.tjake",
"artifactId" : "jlama-core",
"version" : "0.7.0"
},
{
"groupId" : "com.github.tjake",
"artifactId" : "jlama-native",
"classifier" : "windows-x86_64",
"version" : "0.7.0"
}
"com.github.tjake:jlama-core:0.7.0",
"com.github.tjake:jlama-native:0.7.0"
]));
expect(l).toBe(37);
});
Expand Down

0 comments on commit e07c77f

Please sign in to comment.