Skip to content

Commit

Permalink
debugging temp
Browse files Browse the repository at this point in the history
  • Loading branch information
mochic committed Apr 3, 2024
1 parent 0c7ce62 commit 60810a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_fib.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def test_transform(self):
etl_job1 = FIBEtl(job_settings=self.example_job_settings)
parsed_info = etl_job1._extract()
actual_session = etl_job1._transform(parsed_info)
print(actual_session["session_start_time"])
print(actual_session.session_start_time)
print(self.expected_session.session_start_time)
self.assertEqual(self.expected_session, actual_session)

def test_run_job(self):
Expand Down

0 comments on commit 60810a9

Please sign in to comment.