Fix MagicEightBall tests (#3138)

We don't need to enc the response.
master
Ben Moon 2016-05-23 12:24:10 +01:00
parent 77f79c3e77
commit f7f9439d76
2 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ handle remainder => sub {
return $response, structured_answer => {
data => {
title => html_enc($response),
title => $response,
subtitle => "Magic eight ball's answer to: ".html_enc($_)
},
templates => {

View File

@ -9,7 +9,7 @@ use DDG::Test::Goodie;
zci answer_type => "magic_eight_ball";
zci is_cached => 0;
my $possibleAnswers = re(qr/(It is certain|It is decidedly so|Without a doubt|Yes, definitely|You may rely on it|As I see it, yes|Most likely|Outlook good|Yes|Signs point to yes|Reply hazy try again|Ask again later|Better not tell you now|Cannot predict now|Concentrate and ask again|Don(?:'|')t count on it|My reply is no|My sources say no|Outlook not so good|Very doubtful)/);
my $possibleAnswers = re(qr/(It is certain|It is decidedly so|Without a doubt|Yes, definitely|You may rely on it|As I see it, yes|Most likely|Outlook good|Yes|Signs point to yes|Reply hazy try again|Ask again later|Better not tell you now|Cannot predict now|Concentrate and ask again|Don't count on it|My reply is no|My sources say no|Outlook not so good|Very doubtful)/);
sub build_test {
my ($input) = @_;