From 3cf33d96dd96e66b6a875f6b0fc1522388f456a2 Mon Sep 17 00:00:00 2001
From: Jorrit Schaap <schaap@astron.nl>
Date: Wed, 24 Apr 2019 04:29:34 +0000
Subject: [PATCH] SW-657: fixed test

---
 SAS/MoM/MoMQueryService/test/t_momqueryservice.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/SAS/MoM/MoMQueryService/test/t_momqueryservice.py b/SAS/MoM/MoMQueryService/test/t_momqueryservice.py
index 0b89d0b46ad..ded735f2d44 100755
--- a/SAS/MoM/MoMQueryService/test/t_momqueryservice.py
+++ b/SAS/MoM/MoMQueryService/test/t_momqueryservice.py
@@ -1766,12 +1766,11 @@ class TestMoMDatabaseWrapper(unittest.TestCase):
         with self.assertRaises(ValueError):
             self.mom_database_wrapper.get_storagemanager(1234)
 
-    def test_get_storagemanager_throws_ValueError_if_station_selection_not_present_in_misc(self):
+    def test_get_storagemanager_returns_None_if_station_selection_not_present_in_misc(self):
         details_result = [{"misc": json.dumps({"timeWindow": {'minDuration': 300, 'maxDuration': 300}})}]
         self.mysql_mock.connect().cursor().fetchall.return_value = details_result
 
-        with self.assertRaises(KeyError):
-            self.mom_database_wrapper.get_storagemanager(1234)
+        self.assertEqual(None, self.mom_database_wrapper.get_storagemanager(1234))
 
 @unittest.skip("Skipping integration test")
 class IntegrationTestMoMDatabaseWrapper(unittest.TestCase):
-- 
GitLab