Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Euler test ordering
  • Loading branch information
Paul Cochrane committed Aug 28, 2015
1 parent 4122609 commit 55ec5cb
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions t/categories/euler.t
Expand Up @@ -362,6 +362,18 @@ subtest {
check-example-solutions($problem, $expected-output, @authors)
}, "prob033";

skip("prob034 takes too long in tests");
unless $skip {
subtest {
plan 1;
my $problem = "prob034";
my @authors = <quinny>;
my $expected-output = 40730;

check-example-solutions($problem, $expected-output, @authors)
}, "prob034";
}

subtest {
plan 1;

Expand Down Expand Up @@ -650,18 +662,6 @@ unless $skip {
}, "prob189";
}

skip("prob034 takes too long in tests");
unless $skip {
subtest {
plan 1;
my $problem = "prob034";
my @authors = <quinny>;
my $expected-output = 40730;

check-example-solutions($problem, $expected-output, @authors)
}, "prob034";
}

#| check examples provided by the given authors
sub check-example-solutions($problem, $expected-output, @authors) {
for @authors -> $author {
Expand Down

0 comments on commit 55ec5cb

Please sign in to comment.