Skip to content

Commit

Permalink
fix tz in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanLaserGit committed Sep 24, 2024
1 parent 35a120f commit cba0711
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forcingprocessor/tests/test_forcingprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
from datetime import datetime
from forcingprocessor.processor import prep_ngen_data
from forcingprocessor.nwm_filenames_generator import generate_nwmfiles
import pytz as tz

date = datetime.now()
date = datetime.now(tz.timezone('US/Eastern'))
date = date.strftime('%Y%m%d')
hourminute = '0000'
test_dir = Path(__file__).parent
Expand Down

0 comments on commit cba0711

Please sign in to comment.