pjfanning commented on code in PR #1868: URL: https://github.com/apache/pekko/pull/1868#discussion_r2112337211
########## stream-tests/src/test/scala/org/apache/pekko/stream/scaladsl/FlowDropRepeatedSpec.scala: ########## @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, which was derived from Akka. + */ + +/* + * Copyright (C) 2014-2022 Lightbend Inc. <https://www.lightbend.com> + */ + +package org.apache.pekko.stream.scaladsl + +import org.apache.pekko.stream.ActorAttributes._ +import org.apache.pekko.stream.Supervision._ +import org.apache.pekko.stream.testkit._ +import org.apache.pekko.stream.testkit.scaladsl.TestSink + +import scala.util.control.NoStackTrace + +class FlowDropRepeatedSpec extends StreamSpec(""" + pekko.stream.materializer.initial-input-buffer-size = 2 + """) with ScriptedTest { + private val TE = new Exception("TEST") with NoStackTrace { + override def toString = "TE" + } + + "A DistinctUntilChanged" must { Review Comment: ```suggestion "A dropRepeated operation" must { ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org