From b059445e414b89c6ff5d60e2d66d1a42105284a3 Mon Sep 17 00:00:00 2001 From: Tate Johnson Date: Mon, 12 Jun 2017 21:09:39 +1000 Subject: [PATCH] Fix function call in LightTests. --- Tests/LightTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LightTests.swift b/Tests/LightTests.swift index a360afd..f2838f0 100644 --- a/Tests/LightTests.swift +++ b/Tests/LightTests.swift @@ -36,6 +36,6 @@ class LightTests: XCTestCase { } private func newLight() -> Light { - return Light(id: "d3b2f2d97452", power: true, brightness: 0.5, color: Color.white(Color.defaultKelvin), productInformation: nil, label: "Lamp", connected: true, group: nil, location: nil, touchedAt: nil) + return Light(id: "d3b2f2d97452", power: true, brightness: 0.5, color: Color.white(Color.defaultKelvin), productInfo: nil, label: "Lamp", connected: true, group: nil, location: nil, touchedAt: nil) } }