diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-08-25 18:40:50 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 18:40:50 +0530 |
commit | 98d724156cdd35f4506282c239f2c6eab13255e9 (patch) | |
tree | c7051615e45d9d0afb9bedb316f193e7982d6d21 /tests | |
parent | db190854040e790456bbbe74ee31b6cda635127c (diff) |
updating test mail
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dbTestFiller.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/dbTestFiller.py b/tests/dbTestFiller.py index b3f0b49..e56ea5c 100644 --- a/tests/dbTestFiller.py +++ b/tests/dbTestFiller.py @@ -42,14 +42,14 @@ sqlQuery = "insert into curieweb (id, email, protein, protein_name, ligand_pdbqt jobID = gen_word(16, 1, 1) print("Succesfuly submitted Job ID:",jobID) -insert_tuple = (jobID,"navanchauhan@gmail.com",receptor,receptorName,ligand,ligandName,config,done) +insert_tuple = (jobID,"b5bmf.{curie-gh-ci}@inbox.testmail.app",receptor,receptorName,ligand,ligandName,config,done) try: mycursor.execute(sqlQuery,insert_tuple) except con.IntegrityError: print("Oops, Collision occured. Generating new Job ID and trying again.") jobID = gen_word(16, 1, 1) - insert_tuple = (jobID,"navanchauhan@gmail.com",receptor,receptorName,ligand,ligandName,config,done) + insert_tuple = (jobID,"b5bmf.{curie-gh-ci}@inbox.testmail.app",receptor,receptorName,ligand,ligandName,config,done) mycursor.execute(sqlQuery,insert_tuple) print("Removing Test Query") @@ -59,4 +59,4 @@ mycursor.execute(q) mycon.commit() -print("Database working perfectly")
\ No newline at end of file +print("Database working perfectly") |