aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2015-10-09 16:59:45 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2015-10-09 16:59:45 +0100
commita577e6cead169a5f28daf020ebbc86de6fbac6c2 (patch)
treedb0b6eba60dcaca8301d6c2da25fa5d9e6f0f75e /perllib
parent97cd4dd5d39ee23a4c8f0863809e4230f954274a (diff)
parent0ae59f7314fe161245462b8cabba5d4e1988853f (diff)
Merge branch '1141-list-css-part-4'
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/TestMech.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/TestMech.pm b/perllib/FixMyStreet/TestMech.pm
index 1035a47ba..cc5f9dd71 100644
--- a/perllib/FixMyStreet/TestMech.pm
+++ b/perllib/FixMyStreet/TestMech.pm
@@ -402,7 +402,7 @@ sub extract_update_metas {
my $result = scraper {
process 'div#updates div.problem-update p em', 'meta[]', 'TEXT';
- process '.update-text .meta-2', 'meta[]', 'TEXT';
+ process '.item-list__update-text .meta-2', 'meta[]', 'TEXT';
}
->scrape( $mech->response );
@@ -423,7 +423,7 @@ sub extract_problem_list {
my $mech = shift;
my $result = scraper {
- process 'ul.issue-list-a li a h4', 'problems[]', 'TEXT';
+ process 'ul.item-list--reports li a h4', 'problems[]', 'TEXT';
}->scrape( $mech->response );
return $result->{ problems } || [];