Skip to content

Commit

Permalink
ARROW-10413: [Rust] [Parquet] Unignore some tests that are passing now
Browse files Browse the repository at this point in the history
Closes #8546 from carols10cents/unignore-some-tests

Authored-by: Carol (Nichols || Goulding) <carol.nichols@gmail.com>
Signed-off-by: Jorge C. Leitao <jorgecarleitao@gmail.com>
  • Loading branch information
carols10cents authored and jorgecarleitao committed Oct 29, 2020
1 parent 16f11d5 commit 9867c48
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions rust/parquet/src/arrow/arrow_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,6 @@ mod tests {
// one_column_roundtrip manually instead of calling required_and_optional for these tests.

#[test]
#[ignore] // Timestamp support isn't correct yet
fn timestamp_second_single_column() {
let raw_values: Vec<_> = (0..SMALL_SIZE as i64).collect();
let values = Arc::new(TimestampSecondArray::from_vec(raw_values, None));
Expand All @@ -1092,7 +1091,6 @@ mod tests {
}

#[test]
#[ignore] // Timestamp support isn't correct yet
fn timestamp_nanosecond_single_column() {
let raw_values: Vec<_> = (0..SMALL_SIZE as i64).collect();
let values = Arc::new(TimestampNanosecondArray::from_vec(raw_values, None));
Expand All @@ -1118,7 +1116,6 @@ mod tests {
}

#[test]
#[ignore] // DateUnit resolution mismatch
fn time32_second_single_column() {
required_and_optional::<Time32SecondArray, _>(
0..SMALL_SIZE as i32,
Expand All @@ -1143,7 +1140,6 @@ mod tests {
}

#[test]
#[ignore] // DateUnit resolution mismatch
fn time64_nanosecond_single_column() {
required_and_optional::<Time64NanosecondArray, _>(
0..SMALL_SIZE as i64,
Expand Down

0 comments on commit 9867c48

Please sign in to comment.