Skip to content

Commit

Permalink
fixed a test
Browse files Browse the repository at this point in the history
  • Loading branch information
apurvrathore committed Mar 14, 2024
1 parent 59327f0 commit 6abd221
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import unittest
from datetime import datetime
from datetime import date, datetime
from decimal import Decimal

from flux_sdk.flux_core.data_models import (
Expand Down Expand Up @@ -81,7 +81,7 @@ def setUp(self) -> None:
employee.dob = datetime(1990, 1, 1)
employee.start_date = datetime(2020, 1, 1)
employee.original_hire_date = datetime(2020, 1, 1)
employee.termination_date = datetime(2020, 6, 1)
employee.termination_date = date(2020, 6, 1)
employee.start_date = datetime(2021, 1, 1)
employee.status = EmployeeState.ACTIVE
employee.is_international_employee = False
Expand Down

0 comments on commit 6abd221

Please sign in to comment.