-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include email address in all weekly reports (#347)
- Loading branch information
1 parent
3c7edd9
commit 4527f6f
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ | |
"invited_at" => "2024-09-04 13:00:00 UTC", | ||
"snap_application_date" => "2024-09-03", | ||
"completed_at" => "2024-09-04 13:30:00 UTC", | ||
"email_address" => "[email protected]" | ||
) | ||
expect(parsed_csv.length).to eq(1) | ||
end | ||
|
@@ -111,6 +112,7 @@ | |
"invited_at" => "2024-09-04 13:00:00 UTC", | ||
"snap_application_date" => match(/\d\d\d\d-\d\d-\d\d/), | ||
"completed_at" => nil, | ||
"email_address" => "[email protected]" | ||
)) | ||
end | ||
end | ||
|
@@ -129,6 +131,7 @@ | |
"invited_at" => "2024-09-04 13:00:00 UTC", | ||
"snap_application_date" => "2024-09-03", | ||
"completed_at" => "2024-09-04 13:30:00 UTC", | ||
"email_address" => "[email protected]" | ||
) | ||
expect(parsed_csv.length).to eq(1) | ||
end | ||
|