Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewturner committed Sep 8, 2023
1 parent 65ea3b3 commit a8f4ac6
Show file tree
Hide file tree
Showing 5 changed files with 396 additions and 267 deletions.
16 changes: 8 additions & 8 deletions aws/handlers/Handler.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const DefaultThermostatRepository = require('smartheat-core/core/ThermostatRepository');
const ThermostatService = require('smartheat-core/core/ThermostatService');
const DefaultHoldStrategy = require('smartheat-core/core/HoldStrategy');
const DynamodbThermostatRepository = require('smartheat-aws/aws/ThermostatRepository');
const AwsHoldStrategy = require('smartheat-aws/aws/HoldStrategy');
const DefaultThermostatRepository = require('@matthewturner/smartheat-core/core/ThermostatRepository');
const ThermostatService = require('@matthewturner/smartheat-core/core/ThermostatService');
const DefaultHoldStrategy = require('@matthewturner/smartheat-core/core/HoldStrategy');
const DynamodbThermostatRepository = require('@matthewturner/smartheat-aws/aws/ThermostatRepository');
const AwsHoldStrategy = require('@matthewturner/smartheat-aws/aws/HoldStrategy');
const SetTemperatureStrategy = require('../DeferredSetTemperatureStrategy');
const {
ProfileGateway,
MockProfileGateway
} = require('smartheat-aws/aws/ProfileGateway');
const helpers = require('smartheat-aws/aws/helpers');
const Factory = require('smartheat-core/core/Factory');
} = require('@matthewturner/smartheat-aws/aws/ProfileGateway');
const helpers = require('@matthewturner/smartheat-aws/aws/helpers');
const Factory = require('@matthewturner/smartheat-core/core/Factory');
const AlexaResponseBuilder = require('../AlexaResponseBuilder');

class Handler {
Expand Down
2 changes: 1 addition & 1 deletion aws/smarthome-lambda.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const Logger = require('smartheat-core/core/Logger');
const Logger = require('@matthewturner/smartheat-core/core/Logger');
const HandlerRegistry = require('./HandlerRegistry');

const logger = new Logger(process.env.LOG_LEVEL || Logger.DEBUG);
Expand Down
Loading

0 comments on commit a8f4ac6

Please sign in to comment.