commit 995e876cc28e41f3da4f4398504c6ef63f0beb4e Author: Mauro Talevi <mauro.tal...@aquilonia.org> AuthorDate: Fri, 15 Nov 2013 00:53:25 +0100 Commit: Mauro Talevi <mauro.tal...@aquilonia.org> CommitDate: Fri, 15 Nov 2013 00:53:25 +0100
JBEHAVE-957: Updated example to verify behaviour. diff --git a/examples/i18n/src/main/java/org/jbehave/examples/trader/i18n/steps/DeSteps.java b/examples/i18n/src/main/java/org/jbehave/examples/trader/i18n/steps/DeSteps.java index 1a1fdb3..66237a8 100644 --- a/examples/i18n/src/main/java/org/jbehave/examples/trader/i18n/steps/DeSteps.java +++ b/examples/i18n/src/main/java/org/jbehave/examples/trader/i18n/steps/DeSteps.java @@ -19,7 +19,7 @@ public class DeSteps { // Actually it would be spelled "symbol" in German, but // we want to verify that umlauts work for parameter names. - @Given("ich habe eine Aktion mit dem Symbol $symbol und eine Schwelle von $threshold") + @Given("ich habe eine Aktion mit dem Symbol $sümbol und eine Schwelle von $threshold") public void aStock(@Named("sümbol") String symbol, @Named("threshold") double threshold) { stock = new Stock(symbol, threshold); }