I’m fairly certain my code is working, but I’m only getting 3/4 to pass the tests and can’t get past this DuplicateKeyError.
I checked the collection in Compass and don’t see any duplicate _ids, but it seems like there may be a duplicate somewhere that needs to be deleted?
[SOLUTION]
It seems that, although my delete_comment() function was passing the delete_comment tests, it was still causing errors in the create_update_comments test because of an upstart=True
line I had added. After removing that statement, it passed all the tests.