Skip to content

Commit 5993fa5

Browse files
committed
Fix build issue following latest AppVeyor update.
1 parent b146356 commit 5993fa5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/QuikGraph.Data.Tests/DataRelationEdgeTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ void CreateDataColumns(out DataColumn custIdCol, out DataColumn ordIdCol)
9090

9191
var customers = new DataTable("Customers");
9292
custIdCol = new DataColumn("CustomerID", typeof(int)) { Unique = true };
93-
customers.Columns.Add(customerIdCol);
93+
customers.Columns.Add(custIdCol);
9494
dataSet.Tables.Add(customers);
9595

9696
var orders = new DataTable("Orders");
9797
ordIdCol = new DataColumn("OrderID", typeof(int)) { Unique = true };
98-
orders.Columns.Add(orderIdCol);
98+
orders.Columns.Add(ordIdCol);
9999
dataSet.Tables.Add(orders);
100100
}
101101

0 commit comments

Comments
 (0)