diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-05-28 15:55:18 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-06-06 19:35:12 +0100 |
commit | bbd32eea941c41bb80a5fedfa09c1bbb33374d4b (patch) | |
tree | 331f4f771dfaa55471e1953635ce331610b917ae | |
parent | a72660063d1add8a7cd4bcc540496249b2a4a0aa (diff) |
Fix typo in fixture yaml
I’m sure created_at should not have been there twice. Presumably
the second one was supposed to be updated_at.
-rw-r--r-- | spec/fixtures/info_requests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/fixtures/info_requests.yml b/spec/fixtures/info_requests.yml index 33e9a16f2..b347be76b 100644 --- a/spec/fixtures/info_requests.yml +++ b/spec/fixtures/info_requests.yml @@ -61,7 +61,7 @@ spam_1_request: title: Cheap v1agra url_title: spam_1 created_at: 2010-01-01 01:23:45.6789100 - created_at: 2010-01-01 01:23:45.6789100 + updated_at: 2010-01-01 01:23:45.6789100 public_body_id: 5 user_id: 5 described_state: successful @@ -72,7 +72,7 @@ spam_2_request: title: Cheap v1agra url_title: spam_2 created_at: 2010-01-01 02:23:45.6789100 - created_at: 2010-01-01 02:23:45.6789100 + updated_at: 2010-01-01 02:23:45.6789100 public_body_id: 6 user_id: 5 described_state: successful |