Fix stale import in freezer_api/storage/driver.py
freezer_api/storage/driver.py has a stale import the referenced file is simpledict.py which is not needed anymore and has been removed Change-Id: Iaa97f7a4efaa6bbc97ef8fa5566d5c5a55d2a11f Closes-Bug: #1457158
This commit is contained in:
parent
5f4d2974e3
commit
3b7b176a0b
freezer_api
@ -22,7 +22,7 @@ Hudson (tjh@cryptsoft.com).
|
|||||||
from oslo.config import cfg
|
from oslo.config import cfg
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from freezer_api.storage import simpledict, elastic
|
from freezer_api.storage import elastic
|
||||||
|
|
||||||
|
|
||||||
opt_group = cfg.OptGroup(name='storage',
|
opt_group = cfg.OptGroup(name='storage',
|
||||||
|
@ -24,14 +24,10 @@ Hudson (tjh@cryptsoft.com).
|
|||||||
import unittest
|
import unittest
|
||||||
from mock import patch
|
from mock import patch
|
||||||
|
|
||||||
#import pytest
|
|
||||||
#import falcon
|
|
||||||
#from common import *
|
|
||||||
|
|
||||||
from oslo.config import cfg
|
from oslo.config import cfg
|
||||||
|
|
||||||
from freezer_api.common.exceptions import *
|
from freezer_api.common.exceptions import *
|
||||||
from freezer_api.storage import driver, elastic, simpledict
|
from freezer_api.storage import driver, elastic
|
||||||
|
|
||||||
|
|
||||||
class TestStorageDriver(unittest.TestCase):
|
class TestStorageDriver(unittest.TestCase):
|
||||||
|
Loading…
Reference in New Issue
Block a user