From 8c7082de8028f5c572d042cc5ea070503b6858ac Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Wed, 18 Dec 2019 16:51:17 -0800 Subject: [PATCH] Update GpioControllerTestBase.cs (#906) --- src/System.Device.Gpio.Tests/GpioControllerTestBase.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/System.Device.Gpio.Tests/GpioControllerTestBase.cs b/src/System.Device.Gpio.Tests/GpioControllerTestBase.cs index 3891f7cc..8e31c248 100644 --- a/src/System.Device.Gpio.Tests/GpioControllerTestBase.cs +++ b/src/System.Device.Gpio.Tests/GpioControllerTestBase.cs @@ -13,9 +13,9 @@ namespace System.Device.Gpio.Tests { public abstract class GpioControllerTestBase { - private const int LedPin = 18; - private const int OutputPin = 16; - private const int InputPin = 12; + private const int LedPin = 5; + private const int OutputPin = 5; + private const int InputPin = 6; private static readonly int WaitMilliseconds = 1000; [Fact] -- GitLab