Skip to content

Commit 4db8d77

Browse files
committed
fixes
1 parent ff4a226 commit 4db8d77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/monotouch-test/CoreMidi/MidiEndpointTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#if !__TVOS__
1212
using System;
13+
using System.Collections.Generic;
1314

1415
using AudioToolbox;
1516
using Foundation;
@@ -50,7 +51,7 @@ public void SendTest ()
5051
var endpoints = new List<MidiEndpoint> ();
5152
for (var d = 0; d < entity.Destinations; d++)
5253
endpoints.Add (entity.GetDestination (d));
53-
for (var d = 0; d < endpoint.Sources; d++)
54+
for (var d = 0; d < entity.Sources; d++)
5455
endpoints.Add (entity.GetSource (d));
5556

5657
foreach (var ep in endpoints) {

0 commit comments

Comments
 (0)