diff --git a/dags/testdag.py b/dags/testdag.py
index bcecf078ee8115bf685389a92f4231f296efc6ee..f974f232cb4a474c6978f1e0cbe8e00fb7f1bad8 100644
--- a/dags/testdag.py
+++ b/dags/testdag.py
@@ -14,7 +14,7 @@ def_args = {
 
 }
 
-with DAG('firsto', default_args=def_args, description='first dag', schedule_interval=timedelta(days=1), start_date=days_ago(2)) as dag:
+with DAG('testdag', default_args=def_args, description='simple testing dag', schedule_interval=timedelta(days=1), start_date=days_ago(2)) as dag:
     t1 = BashOperator(task_id='print_date', bash_command='date')
     t2 = BashOperator(task_id='do_noting', bash_command='sleep 5')