@@ -390,7 +390,9 @@ trait RunScriptTestDefinitions { _: RunTestDefinitions =>
390
390
| ${tab}at throws $$ .something(throws.sc:2)
391
391
| ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:3)
392
392
| $tab... 10 more """ .stripMargin.linesIterator.toVector
393
- else if (actualScalaVersion.coursierVersion >= (" 2.13.13" .coursierVersion))
393
+ else if (
394
+ actualScalaVersion.coursierVersion >= " 2.13.13" .coursierVersion && actualScalaVersion.coursierVersion < " 2.13.17" .coursierVersion
395
+ )
394
396
s """ Exception in thread "main" java.lang.Exception: Caught exception during processing
395
397
| ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:6)
396
398
| ${tab}at throws $$ delayedInit $$ body.apply(throws.sc:65534)
@@ -412,6 +414,28 @@ trait RunScriptTestDefinitions { _: RunTestDefinitions =>
412
414
| ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:3)
413
415
| $tab... 13 more
414
416
| """ .stripMargin.linesIterator.toVector
417
+ else if (actualScalaVersion.coursierVersion >= " 2.13.17" .coursierVersion)
418
+ s """ Exception in thread "main" java.lang.Exception: Caught exception during processing
419
+ | ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:6)
420
+ | ${tab}at throws $$ delayedInit $$ body.apply(throws.sc:65534)
421
+ | ${tab}at scala.Function0.apply $$ mcV $$ sp(Function0.scala:42)
422
+ | ${tab}at scala.Function0.apply $$ mcV $$ sp $$ (Function0.scala:42)
423
+ | ${tab}at scala.runtime.AbstractFunction0.apply $$ mcV $$ sp(AbstractFunction0.scala:17)
424
+ | ${tab}at scala.App. $$ anonfun $$ main $$ 1(App.scala:98)
425
+ | ${tab}at scala.App. $$ anonfun $$ main $$ 1 $$ adapted(App.scala:98)
426
+ | ${tab}at scala.collection.IterableOnceOps.foreach(IterableOnce.scala:630)
427
+ | ${tab}at scala.collection.IterableOnceOps.foreach $$ (IterableOnce.scala:628)
428
+ | ${tab}at scala.collection.AbstractIterable.foreach(Iterable.scala:936)
429
+ | ${tab}at scala.App.main(App.scala:98)
430
+ | ${tab}at scala.App.main $$ (App.scala:96)
431
+ | ${tab}at throws $$ .main(throws.sc:65534)
432
+ | ${tab}at throws.main(throws.sc)
433
+ |Caused by: java.lang.RuntimeException: nope
434
+ | ${tab}at scala.sys.package $$ .error(package.scala:27)
435
+ | ${tab}at throws $$ .something(throws.sc:2)
436
+ | ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:3)
437
+ | $tab... 13 more
438
+ | """ .stripMargin.linesIterator.toVector
415
439
else
416
440
s """ Exception in thread "main" java.lang.Exception: Caught exception during processing
417
441
| ${tab}at throws $$ .delayedEndpoint $$ throws $$ 1(throws.sc:6)
0 commit comments