Skip to content

Commit a1b2e82

Browse files
committed
Fix test compilation
1 parent ddaf8d4 commit a1b2e82

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

testlib/src/test/java/com/diffplug/spotless/rome/RomeStepTest.java

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class AutoDetectLanguage {
5353
*/
5454
@Test
5555
void testAutoDetectCjs() {
56-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
56+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
5757
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
5858
stepHarness.testResource("rome/js/fileBefore.cjs", "rome/js/fileAfter.cjs");
5959
}
@@ -64,7 +64,7 @@ void testAutoDetectCjs() {
6464
*/
6565
@Test
6666
void testAutoDetectCts() {
67-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
67+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
6868
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
6969
stepHarness.testResource("rome/ts/fileBefore.cts", "rome/ts/fileAfter.cts");
7070
}
@@ -75,7 +75,7 @@ void testAutoDetectCts() {
7575
*/
7676
@Test
7777
void testAutoDetectJs() {
78-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
78+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
7979
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
8080
stepHarness.testResource("rome/js/fileBefore.js", "rome/js/fileAfter.js");
8181
}
@@ -86,7 +86,7 @@ void testAutoDetectJs() {
8686
*/
8787
@Test
8888
void testAutoDetectJson() {
89-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
89+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
9090
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
9191
stepHarness.testResource("rome/json/fileBefore.json", "rome/json/fileAfter.json");
9292
}
@@ -97,7 +97,7 @@ void testAutoDetectJson() {
9797
*/
9898
@Test
9999
void testAutoDetectJsx() {
100-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
100+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
101101
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
102102
stepHarness.testResource("rome/js/fileBefore.jsx", "rome/js/fileAfter.jsx");
103103
}
@@ -108,7 +108,7 @@ void testAutoDetectJsx() {
108108
*/
109109
@Test
110110
void testAutoDetectMjs() {
111-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
111+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
112112
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
113113
stepHarness.testResource("rome/js/fileBefore.mjs", "rome/js/fileAfter.mjs");
114114
}
@@ -119,7 +119,7 @@ void testAutoDetectMjs() {
119119
*/
120120
@Test
121121
void testAutoDetectMts() {
122-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
122+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
123123
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
124124
stepHarness.testResource("rome/ts/fileBefore.mts", "rome/ts/fileAfter.mts");
125125
}
@@ -130,7 +130,7 @@ void testAutoDetectMts() {
130130
*/
131131
@Test
132132
void testAutoDetectTs() {
133-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
133+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
134134
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
135135
stepHarness.testResource("rome/ts/fileBefore.ts", "rome/ts/fileAfter.ts");
136136
}
@@ -141,7 +141,7 @@ void testAutoDetectTs() {
141141
*/
142142
@Test
143143
void testAutoDetectTsx() {
144-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
144+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).create();
145145
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
146146
stepHarness.testResource("rome/ts/fileBefore.tsx", "rome/ts/fileAfter.tsx");
147147
}
@@ -155,7 +155,7 @@ class ConfigFile {
155155
@Test
156156
void testLineWidth120() {
157157
var path = createRomeConfig("rome/config/line-width-120.json");
158-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withConfigPath(path).create();
158+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withConfigPath(path).create();
159159
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
160160
stepHarness.testResource("rome/js/longLineBefore.js", "rome/js/longLineAfter120.js");
161161
}
@@ -166,7 +166,7 @@ void testLineWidth120() {
166166
@Test
167167
void testLineWidth80() {
168168
var path = createRomeConfig("rome/config/line-width-80.json");
169-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withConfigPath(path).create();
169+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withConfigPath(path).create();
170170
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
171171
stepHarness.testResource("rome/js/longLineBefore.js", "rome/js/longLineAfter80.js");
172172
}
@@ -191,7 +191,7 @@ class ExplicitLanguage {
191191
*/
192192
@Test
193193
void testAutoDetectCjs() {
194-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
194+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
195195
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
196196
stepHarness.testResource("rome/js/fileBefore.cjs", "rome/js/fileAfter.cjs");
197197
}
@@ -202,7 +202,7 @@ void testAutoDetectCjs() {
202202
*/
203203
@Test
204204
void testAutoDetectCts() {
205-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
205+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
206206
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
207207
stepHarness.testResource("rome/ts/fileBefore.cts", "rome/ts/fileAfter.cts");
208208
}
@@ -213,7 +213,7 @@ void testAutoDetectCts() {
213213
*/
214214
@Test
215215
void testAutoDetectJs() {
216-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
216+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
217217
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
218218
stepHarness.testResource("rome/js/fileBefore.js", "rome/js/fileAfter.js");
219219
}
@@ -224,7 +224,7 @@ void testAutoDetectJs() {
224224
*/
225225
@Test
226226
void testAutoDetectJson() {
227-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("json").create();
227+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("json").create();
228228
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
229229
stepHarness.testResource("rome/json/fileBefore.json", "rome/json/fileAfter.json");
230230
}
@@ -235,7 +235,7 @@ void testAutoDetectJson() {
235235
*/
236236
@Test
237237
void testAutoDetectJsx() {
238-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("jsx").create();
238+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("jsx").create();
239239
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
240240
stepHarness.testResource("rome/js/fileBefore.jsx", "rome/js/fileAfter.jsx");
241241
}
@@ -246,7 +246,7 @@ void testAutoDetectJsx() {
246246
*/
247247
@Test
248248
void testAutoDetectMjs() {
249-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
249+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("js").create();
250250
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
251251
stepHarness.testResource("rome/js/fileBefore.mjs", "rome/js/fileAfter.mjs");
252252
}
@@ -257,7 +257,7 @@ void testAutoDetectMjs() {
257257
*/
258258
@Test
259259
void testAutoDetectMts() {
260-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
260+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
261261
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
262262
stepHarness.testResource("rome/ts/fileBefore.mts", "rome/ts/fileAfter.mts");
263263
}
@@ -268,7 +268,7 @@ void testAutoDetectMts() {
268268
*/
269269
@Test
270270
void testAutoDetectTs() {
271-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
271+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("ts").create();
272272
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
273273
stepHarness.testResource("rome/ts/fileBefore.ts", "rome/ts/fileAfter.ts");
274274
}
@@ -279,7 +279,7 @@ void testAutoDetectTs() {
279279
*/
280280
@Test
281281
void testAutoDetectTsx() {
282-
var step = RomeStep.withExeDownload(EBiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("tsx").create();
282+
var step = RomeStep.withExeDownload(BiomeFlavor.ROME, "12.0.0", downloadDir.toString()).withLanguage("tsx").create();
283283
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
284284
stepHarness.testResource("rome/ts/fileBefore.tsx", "rome/ts/fileAfter.tsx");
285285
}
@@ -300,7 +300,7 @@ class AutoDetectLanguage {
300300
*/
301301
@Test
302302
void testAutoDetectCjs() {
303-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
303+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
304304
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
305305
stepHarness.testResource("biome/js/fileBefore.cjs", "biome/js/fileAfter.cjs");
306306
}
@@ -311,7 +311,7 @@ void testAutoDetectCjs() {
311311
*/
312312
@Test
313313
void testAutoDetectCts() {
314-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
314+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
315315
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
316316
stepHarness.testResource("biome/ts/fileBefore.cts", "biome/ts/fileAfter.cts");
317317
}
@@ -322,7 +322,7 @@ void testAutoDetectCts() {
322322
*/
323323
@Test
324324
void testAutoDetectJs() {
325-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
325+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
326326
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
327327
stepHarness.testResource("biome/js/fileBefore.js", "biome/js/fileAfter.js");
328328
}
@@ -333,7 +333,7 @@ void testAutoDetectJs() {
333333
*/
334334
@Test
335335
void testAutoDetectJson() {
336-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
336+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
337337
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
338338
stepHarness.testResource("biome/json/fileBefore.json", "biome/json/fileAfter.json");
339339
}
@@ -344,7 +344,7 @@ void testAutoDetectJson() {
344344
*/
345345
@Test
346346
void testAutoDetectJsx() {
347-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
347+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
348348
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
349349
stepHarness.testResource("biome/js/fileBefore.jsx", "biome/js/fileAfter.jsx");
350350
}
@@ -355,7 +355,7 @@ void testAutoDetectJsx() {
355355
*/
356356
@Test
357357
void testAutoDetectMjs() {
358-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
358+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
359359
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
360360
stepHarness.testResource("biome/js/fileBefore.mjs", "biome/js/fileAfter.mjs");
361361
}
@@ -366,7 +366,7 @@ void testAutoDetectMjs() {
366366
*/
367367
@Test
368368
void testAutoDetectMts() {
369-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
369+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
370370
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
371371
stepHarness.testResource("biome/ts/fileBefore.mts", "biome/ts/fileAfter.mts");
372372
}
@@ -377,7 +377,7 @@ void testAutoDetectMts() {
377377
*/
378378
@Test
379379
void testAutoDetectTs() {
380-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
380+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
381381
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
382382
stepHarness.testResource("biome/ts/fileBefore.ts", "biome/ts/fileAfter.ts");
383383
}
@@ -388,7 +388,7 @@ void testAutoDetectTs() {
388388
*/
389389
@Test
390390
void testAutoDetectTsx() {
391-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
391+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).create();
392392
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
393393
stepHarness.testResource("biome/ts/fileBefore.tsx", "biome/ts/fileAfter.tsx");
394394
}
@@ -402,7 +402,7 @@ class ConfigFile {
402402
@Test
403403
void testLineWidth120() {
404404
var path = createBiomeConfig("biome/config/line-width-120.json");
405-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withConfigPath(path).create();
405+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withConfigPath(path).create();
406406
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
407407
stepHarness.testResource("biome/js/longLineBefore.js", "biome/js/longLineAfter120.js");
408408
}
@@ -413,7 +413,7 @@ void testLineWidth120() {
413413
@Test
414414
void testLineWidth80() {
415415
var path = createBiomeConfig("biome/config/line-width-80.json");
416-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withConfigPath(path).create();
416+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withConfigPath(path).create();
417417
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
418418
stepHarness.testResource("biome/js/longLineBefore.js", "biome/js/longLineAfter80.js");
419419
}
@@ -438,7 +438,7 @@ class ExplicitLanguage {
438438
*/
439439
@Test
440440
void testAutoDetectCjs() {
441-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
441+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
442442
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
443443
stepHarness.testResource("biome/js/fileBefore.cjs", "biome/js/fileAfter.cjs");
444444
}
@@ -449,7 +449,7 @@ void testAutoDetectCjs() {
449449
*/
450450
@Test
451451
void testAutoDetectCts() {
452-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
452+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
453453
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
454454
stepHarness.testResource("biome/ts/fileBefore.cts", "biome/ts/fileAfter.cts");
455455
}
@@ -460,7 +460,7 @@ void testAutoDetectCts() {
460460
*/
461461
@Test
462462
void testAutoDetectJs() {
463-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
463+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
464464
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
465465
stepHarness.testResource("biome/js/fileBefore.js", "biome/js/fileAfter.js");
466466
}
@@ -471,7 +471,7 @@ void testAutoDetectJs() {
471471
*/
472472
@Test
473473
void testAutoDetectJson() {
474-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("json").create();
474+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("json").create();
475475
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
476476
stepHarness.testResource("biome/json/fileBefore.json", "biome/json/fileAfter.json");
477477
}
@@ -482,7 +482,7 @@ void testAutoDetectJson() {
482482
*/
483483
@Test
484484
void testAutoDetectJsx() {
485-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("jsx").create();
485+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("jsx").create();
486486
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
487487
stepHarness.testResource("biome/js/fileBefore.jsx", "biome/js/fileAfter.jsx");
488488
}
@@ -493,7 +493,7 @@ void testAutoDetectJsx() {
493493
*/
494494
@Test
495495
void testAutoDetectMjs() {
496-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
496+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("js").create();
497497
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
498498
stepHarness.testResource("biome/js/fileBefore.mjs", "biome/js/fileAfter.mjs");
499499
}
@@ -504,7 +504,7 @@ void testAutoDetectMjs() {
504504
*/
505505
@Test
506506
void testAutoDetectMts() {
507-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
507+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
508508
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
509509
stepHarness.testResource("biome/ts/fileBefore.mts", "biome/ts/fileAfter.mts");
510510
}
@@ -515,7 +515,7 @@ void testAutoDetectMts() {
515515
*/
516516
@Test
517517
void testAutoDetectTs() {
518-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
518+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("ts").create();
519519
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
520520
stepHarness.testResource("biome/ts/fileBefore.ts", "biome/ts/fileAfter.ts");
521521
}
@@ -526,7 +526,7 @@ void testAutoDetectTs() {
526526
*/
527527
@Test
528528
void testAutoDetectTsx() {
529-
var step = RomeStep.withExeDownload(EBiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("tsx").create();
529+
var step = RomeStep.withExeDownload(BiomeFlavor.BIOME, "1.2.0", downloadDir.toString()).withLanguage("tsx").create();
530530
var stepHarness = StepHarnessWithFile.forStep(RomeStepTest.this, step);
531531
stepHarness.testResource("biome/ts/fileBefore.tsx", "biome/ts/fileAfter.tsx");
532532
}

0 commit comments

Comments
 (0)