=doc #16910 Fix include sections in fault tolerance docs

* and don't show AkkaSpec in doc code

(cherry picked from commit 23be60395cdea846ef168960cd05e88c6bd29556)

Conflicts:
	akka-docs/rst/scala/code/docs/actor/FaultHandlingDocSpec.scala
	akka-docs/rst/scala/fault-tolerance.rst
This commit is contained in:
Patrik Nordwall 2015-03-25 20:22:12 +01:00
parent 83854f87c9
commit ef387af2fc
3 changed files with 18 additions and 14 deletions

View file

@ -20,7 +20,6 @@ import scala.collection.immutable.Seq;
import scala.concurrent.Await;
import static akka.pattern.Patterns.ask;
import scala.concurrent.duration.Duration;
import akka.testkit.AkkaSpec;
import akka.testkit.TestProbe;
//#testkit
@ -151,7 +150,7 @@ public class FaultHandlingTest {
@BeforeClass
public static void start() {
system = ActorSystem.create("test", AkkaSpec.testConf());
system = ActorSystem.create("test");
}
@AfterClass