Skip to content

Commit 94681de

Browse files
committed
t fixing approved files again
1 parent d6760ab commit 94681de

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[input1.value1, input2.value1] => placeholder
2-
[input1.value1, input2.value2] => placeholder
3-
[input1.value1, input2.value3] => placeholder
4-
[input1.value2, input2.value1] => placeholder
5-
[input1.value2, input2.value2] => placeholder
6-
[input1.value2, input2.value3] => placeholder
1+
[input1.value1, input2.value1] => placeholder
2+
[input1.value1, input2.value2] => placeholder
3+
[input1.value1, input2.value3] => placeholder
4+
[input1.value2, input2.value1] => placeholder
5+
[input1.value2, input2.value2] => placeholder
6+
[input1.value2, input2.value3] => placeholder
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[hello, 1] => (hello,1)
2-
[hello, 2] => (hello,2)
3-
[hello, 3] => (hello,3)
4-
[world, 1] => (world,1)
5-
[world, 2] => (world,2)
6-
[world, 3] => (world,3)
1+
[hello, 1] => (hello,1)
2+
[hello, 2] => (hello,2)
3+
[hello, 3] => (hello,3)
4+
[world, 1] => (world,1)
5+
[world, 2] => (world,2)
6+
[world, 3] => (world,3)

approvaltests-util-tests/src/test/java/com/spun/util/date/DateRangeTest.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,11 @@ public void testGetMonths()
7575
@Test
7676
public void testGetQuarters()
7777
{
78-
DateRange d = new DateRange(DateUtils.parse("2008/01/01"), DateUtils.parse("2009/01/01"));
79-
Approvals.verifyAll("months", d.getQuarters());
78+
try (WithTimeZone tz = new WithTimeZone("UTC"))
79+
{
80+
DateRange d = new DateRange(DateUtils.parse("2008/01/01"), DateUtils.parse("2009/01/01"));
81+
Approvals.verifyAll("months", d.getQuarters());
82+
}
8083
}
8184
@Test
8285
public void testGetRangeContaining()

0 commit comments

Comments
 (0)