Skip to content

Commit f5b1c10

Browse files
committed
Sort imports and remove debug.
1 parent 2c6a5a4 commit f5b1c10

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_mig_shared_vgridaccess.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
import time
3131
import unittest
3232

33-
from mig.shared.fileio import read_file, pickle
33+
from mig.shared.fileio import pickle, read_file
3434
from mig.shared.vgrid import vgrid_list, vgrid_set_entities, vgrid_settings
35-
from mig.shared.vgridaccess import OWNERS, SETTINGS, VGRIDS, RESOURCES, \
35+
from mig.shared.vgridaccess import OWNERS, RESOURCES, SETTINGS, VGRIDS, \
3636
check_vgrid_access, force_update_resource_map, force_update_user_map, \
3737
force_update_vgrid_map, get_resource_map, get_vgrid_map, \
3838
load_resource_map, refresh_vgrid_map, vgrid_inherit_map
@@ -152,7 +152,6 @@ def test_resource_map_update(self):
152152
resources=[self.TEST_RESOURCE_ID])
153153
updated_vgrid_map = force_update_vgrid_map(self.configuration,
154154
clean=True)
155-
print("DEBUG: updated vgrid map %s" % updated_vgrid_map)
156155
# Check vgrid map contains resource entry
157156
vgrid_data = updated_vgrid_map.get(VGRIDS, {})
158157
top_vgrid_data = vgrid_data.get(self.test_vgrid, {})
@@ -162,7 +161,6 @@ def test_resource_map_update(self):
162161
# Check resource map contains resource entry
163162
updated_res_map = force_update_resource_map(self.configuration,
164163
clean=True)
165-
print("DEBUG: updated res map %s" % updated_res_map)
166164
# Check resource map contains entry
167165
self.assertTrue(self.TEST_RESOURCE_ID in updated_res_map)
168166

0 commit comments

Comments
 (0)