From 77e580f80f1b1c3a31d0804097135425afda3c79 Mon Sep 17 00:00:00 2001 From: Barys Ilyushonak Date: Wed, 11 Dec 2019 19:28:44 +0100 Subject: [PATCH] change order of the slides --- docs/index.html | 29 +++++++++---------- .../scala/de/riskident/meetup/TryTest.scala | 2 +- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/docs/index.html b/docs/index.html index 4450a24..da04ab4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -44,20 +44,6 @@ ## Why does property-based testing matter? -
- - -

@@ -96,8 +82,21 @@ My name is Boris, I started my career as a Java developer, built MVC/enterprise applications, Then I built real-time messaging integration solutions and did performance optimization based on JVM/Linux Later on I made a project with Erlang and moved to scala. + +

+
+ +
diff --git a/src/test/scala/de/riskident/meetup/TryTest.scala b/src/test/scala/de/riskident/meetup/TryTest.scala index 5e43dd3..103fcc8 100644 --- a/src/test/scala/de/riskident/meetup/TryTest.scala +++ b/src/test/scala/de/riskident/meetup/TryTest.scala @@ -55,5 +55,5 @@ class TryTest extends FunSuite with Matchers with Discipline { } - checkAll("Try [String => Int] => Int => Option[Boolean]", MonadTests[Try].stackUnsafeMonad[Int => Int, Int, Int]) + checkAll("Try [Int => Int] => Int => Option[Boolean]", MonadTests[Try].stackUnsafeMonad[Int => Int, Int, Int]) }