From db5af08c541e01748a52def1869dcd5e33a8d721 Mon Sep 17 00:00:00 2001 From: rochala Date: Thu, 2 Nov 2023 11:37:04 +0100 Subject: [PATCH] Increase PC timeout --- .../test/dotty/tools/pc/base/BasePCSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation-compiler/test/dotty/tools/pc/base/BasePCSuite.scala b/presentation-compiler/test/dotty/tools/pc/base/BasePCSuite.scala index 8c040d61575c..eb7a0783d941 100644 --- a/presentation-compiler/test/dotty/tools/pc/base/BasePCSuite.scala +++ b/presentation-compiler/test/dotty/tools/pc/base/BasePCSuite.scala @@ -54,7 +54,7 @@ abstract class BasePCSuite extends PcAssertions: .newInstance("", myclasspath.asJava, scalacOpts.asJava) protected def config: PresentationCompilerConfig = - PresentationCompilerConfigImpl().copy(snippetAutoIndent = false, timeoutDelay = if isDebug then 3600 else 5) + PresentationCompilerConfigImpl().copy(snippetAutoIndent = false, timeoutDelay = if isDebug then 3600 else 10) private def inspectDialect(filename: String, code: String) = val file = tmp.resolve(filename)