digispark: remove test that is expected to ofail, but passes when digispark board is actually connected

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans 2018-08-24 20:59:40 +02:00
parent 99f9156ab7
commit be798fd42b
1 changed files with 1 additions and 4 deletions

View File

@ -128,10 +128,7 @@ func TestDigisparkAdaptorName(t *testing.T) {
}
func TestAdaptorConnect(t *testing.T) {
a := NewAdaptor()
gobottest.Assert(t, a.Connect(), ErrConnection)
a = initTestAdaptor()
a := initTestAdaptor()
gobottest.Assert(t, a.Connect(), nil)
}