From 78b84814cd8d71038f0e8bba02c76bbb12d4fdaa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Erik=20Hedenstro=CC=88m?= <erik@erlang.ninja>
Date: Wed, 22 Apr 2015 22:18:33 +0200
Subject: [PATCH] Fixed R15

---
 .travis.yml             | 11 ++++++-----
 README.md               |  4 ++--
 test/feature_parser.erl |  2 +-
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 55c59c7..9ced84b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,8 @@
-notifications:
-  slack: erlang-ninja:UfDJWnBzKhPRCAKeqC8xdi4A
-
 language: erlang
 otp_release:
-   - R16B
-   - R15B03
+  - 17.5
+  - R16B
+  - R15B03
+
+notifications:
+  slack: erlang-ninja:UfDJWnBzKhPRCAKeqC8xdi4A
diff --git a/README.md b/README.md
index cdc72ab..4d6adc4 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-[![Stories in Ready](https://badge.waffle.io/ErlangNinja/gurka.png?label=ready)](https://waffle.io/ehedenst/gurka)
+[![Stories in Ready](https://badge.waffle.io/ErlangNinja/gurka.png?label=ready)](https://waffle.io/ErlangNinja/gurka)
 
-[![Build Status](https://travis-ci.org/ErlangNinja/gurka.png?branch=develop)](https://travis-ci.org/ehedenst/gurka)
+[![Build Status](https://travis-ci.org/ErlangNinja/gurka.png?branch=develop)](https://travis-ci.org/ErlangNinja/gurka)
 
 gurka
 =====
diff --git a/test/feature_parser.erl b/test/feature_parser.erl
index 457735d..86a7e96 100644
--- a/test/feature_parser.erl
+++ b/test/feature_parser.erl
@@ -40,7 +40,7 @@ given(Tokens, State) ->
     {ok, State}.
 
 then("the parsed result should have $StepCount $StepType steps", State) ->
-    ExpectedCount = binary_to_integer(StepCount),
+    ExpectedCount = list_to_integer(binary_to_list(StepCount)),
     Type = binary_to_atom(StepType, utf8),
     RealCount = lists:foldl(
         fun({_, Action, _, _}, Sum) when Action == Type -> Sum + 1;
-- 
GitLab