Skip to content

Commit

Permalink
add YTD to Time Completed of learning hours table column
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZero0-ctrl committed Jan 23, 2024
1 parent 54790c8 commit f33dc7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<thead>
<tr>
<th><h6>Volunteer</h6></th>
<th><h6>Time Completed</h6></th>
<th><h6>Time Completed YTD</h6></th>
</tr>
<!-- end table row-->
</thead>
Expand Down
4 changes: 2 additions & 2 deletions spec/requests/learning_hours_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

it "displays the time completed column" do
get learning_hours_path
expect(response.body).to include("Time Completed")
expect(response.body).to include("Time Completed YTD")
end
end
end
Expand All @@ -55,7 +55,7 @@

it "displays the time completed column" do
get learning_hours_path
expect(response.body).to include("Time Completed")
expect(response.body).to include("Time Completed YTD")
end
end
end
Expand Down

0 comments on commit f33dc7f

Please sign in to comment.