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:
Fabrizio Vanni 2015-05-20 18:34:06 +01:00
parent 5f4d2974e3
commit 3b7b176a0b
2 changed files with 2 additions and 6 deletions

View File

@ -22,7 +22,7 @@ Hudson (tjh@cryptsoft.com).
from oslo.config import cfg
import logging
from freezer_api.storage import simpledict, elastic
from freezer_api.storage import elastic
opt_group = cfg.OptGroup(name='storage',

View File

@ -24,14 +24,10 @@ Hudson (tjh@cryptsoft.com).
import unittest
from mock import patch
#import pytest
#import falcon
#from common import *
from oslo.config import cfg
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):