Kaydet (Commit) a17fe73d authored tarafından Mads Jensen's avatar Mads Jensen Kaydeden (comit) Tim Graham

Removed an unused function argument in db_functions test.

üst 48f45431
......@@ -801,7 +801,7 @@ class DateFunctionWithTimeZoneTests(DateFunctionTests):
melb = pytz.timezone('Australia/Melbourne')
def test_datetime_kind(kind, tzinfo=melb):
def test_datetime_kind(kind):
self.assertQuerysetEqual(
DTModel.objects.annotate(
truncated=Trunc('start_datetime', kind, output_field=DateTimeField(), tzinfo=melb)
......@@ -813,7 +813,7 @@ class DateFunctionWithTimeZoneTests(DateFunctionTests):
lambda m: (m.start_datetime, m.truncated)
)
def test_date_kind(kind, tzinfo=melb):
def test_date_kind(kind):
self.assertQuerysetEqual(
DTModel.objects.annotate(
truncated=Trunc('start_date', kind, output_field=DateField(), tzinfo=melb)
......@@ -825,7 +825,7 @@ class DateFunctionWithTimeZoneTests(DateFunctionTests):
lambda m: (m.start_datetime, m.truncated)
)
def test_time_kind(kind, tzinfo=melb):
def test_time_kind(kind):
self.assertQuerysetEqual(
DTModel.objects.annotate(
truncated=Trunc('start_time', kind, output_field=TimeField(), tzinfo=melb)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment