Skip to content

Commit d98f6d1

Browse files
unit test issue fix
1 parent 5e1b567 commit d98f6d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ClientAdvisor/App/app.py

+1
Original file line numberDiff line numberDiff line change
@@ -1592,6 +1592,7 @@ def get_users():
15921592
"""select DATEDIFF(d,CAST(max(StartTime) AS Date),CAST(GETDATE() AS Date)) + 3 as ndays from ClientMeetings"""
15931593
)
15941594
rows = cursor.fetchall()
1595+
ndays = 0
15951596
for row in rows:
15961597
ndays = row["ndays"]
15971598
sql_stmt1 = f"UPDATE ClientMeetings SET StartTime = dateadd(day,{ndays},StartTime), EndTime = dateadd(day,{ndays},EndTime)"

0 commit comments

Comments
 (0)