We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4a226 commit 4db8d77Copy full SHA for 4db8d77
tests/monotouch-test/CoreMidi/MidiEndpointTest.cs
@@ -10,6 +10,7 @@
10
11
#if !__TVOS__
12
using System;
13
+using System.Collections.Generic;
14
15
using AudioToolbox;
16
using Foundation;
@@ -50,7 +51,7 @@ public void SendTest ()
50
51
var endpoints = new List<MidiEndpoint> ();
52
for (var d = 0; d < entity.Destinations; d++)
53
endpoints.Add (entity.GetDestination (d));
- for (var d = 0; d < endpoint.Sources; d++)
54
+ for (var d = 0; d < entity.Sources; d++)
55
endpoints.Add (entity.GetSource (d));
56
57
foreach (var ep in endpoints) {
0 commit comments