Skip to content

Commit

Permalink
fixed last test
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-murzinov committed Feb 6, 2014
1 parent 4020c04 commit b52cea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestStack.White.UITests/ControlTests/DataGridTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void CanGetAllItemsWpf()
var rows = DataGridWpfUnderTest.Rows;
Assert.Equal(3, rows.Count);
var row1 = rows.Get(0);
Assert.Equal(3, row1.Cells.Count);
Assert.Equal(4, row1.Cells.Count);
Assert.Equal("1", row1.Cells[0].Text);
Assert.Equal("Item1", row1.Cells[1].Text);
Assert.Contains("Simple", row1.Cells[2].Text);
Expand Down

0 comments on commit b52cea3

Please sign in to comment.