Skip to content

Commit

Permalink
datatable: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Aug 2, 2019
1 parent 7d9cba8 commit 411c8f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions datatable/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed
* Allow `null` values in `DataTable`.
* Improve handling of tables without header ([#540](https://github.com/cucumber/cucumber/pull/540) [mpkorstanje])

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,10 @@ public void convert_to_list_of_object__using_default_converter() {
@Test
public void convert_to_list_of_primitive() {
DataTable table = parse("",
"| 3 | 5 |",
"| 6 | 7 | "
"| 3 |",
"| 5 |",
"| 6 |",
"| 7 |"
);

List<Integer> expected = asList(3, 5, 6, 7);
Expand Down

0 comments on commit 411c8f8

Please sign in to comment.