ソースを参照

Updated MongoHandlers unit test

ogert 5 年 前
コミット
331a3f84d5
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      cdplib/unit_tests/TestMongodbHandler.py

+ 1 - 1
cdplib/unit_tests/TestMongodbHandler.py

@@ -104,7 +104,7 @@ class TestMongodbHandler(unittest.TestCase):
         '''
         original_value = self.mongodb_handler.query_data_and_generate_dataframe(self.first_collection_name).to_dict()['test_value_string'][0]
         self.assertEqual(original_value, self.valid_input['test_value_string'])
-        self.mongodb_handler.update_data_in_collection('test_value_string', 'test_value', 'test_value_string', 'new_test_value', self.first_collection_name)
+        self.mongodb_handler.update_data_in_collection('test_value_string', 'new_test_value', self.first_collection_name, 'test_value_string', 'test_value', create_if_not_exist=False)
         new_value =  self.mongodb_handler.query_data_and_generate_dataframe(self.first_collection_name).to_dict()['test_value_string'][0]
         self.assertNotEqual(original_value, new_value)