fixed a couple of issues with test code introduced by coding changes for account API

pull/184/head
Chris Veilleux 2019-06-16 18:46:11 -05:00
parent a05d692c6f
commit cf1dcbf4ae
2 changed files with 3 additions and 4 deletions

View File

@ -14,7 +14,6 @@ Feature: Get device's information
Scenario: Try to get a device without passing the access token Scenario: Try to get a device without passing the access token
When try to fetch a device without the authorization header When try to fetch a device without the authorization header
Then a 401 status code should be returned Then a 401 status code should be returned
And device last contact timestamp is updated
Scenario: Update device information Scenario: Update device information
When the device is updated When the device is updated

View File

@ -102,14 +102,14 @@ def create_skill_settings(context):
def update_skill(context): def update_skill(context):
response = json.loads(context.upload_device_response.data) response = json.loads(context.upload_device_response.data)
update_settings = AccountSkillSetting( update_settings = AccountSkillSetting(
skill_id=response['uuid'],
settings_display={}, settings_display={},
settings_values=new_settings, settings_values=new_settings,
devices=[context.device_name] device_names=[context.device_name]
) )
skill_ids = [response['uuid']]
db = connect_to_db(context.client_config['DB_CONNECTION_CONFIG']) db = connect_to_db(context.client_config['DB_CONNECTION_CONFIG'])
skill_setting_repo = SkillSettingRepository(db, context.account.id) skill_setting_repo = SkillSettingRepository(db, context.account.id)
skill_setting_repo.update_skill_settings(update_settings) skill_setting_repo.update_skill_settings(update_settings, skill_ids)
@when('the skill settings is fetched') @when('the skill settings is fetched')