Skip to content

Commit

Permalink
use comment instead of inconclusive to mark test
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Feb 23, 2022
1 parent faffd95 commit 962807b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odbc-api/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2295,7 +2295,7 @@ fn use_truncated_output_as_input(profile: &Profile) {

/// Verify that the driver does not insert from invalid memory if inserting a truncated value
#[test_case(MSSQL; "Microsoft SQL Server")]
// #[test_case(MARIADB => inconclusive; "Maria DB")] Expected fail. Inconclusive seems not to work.
//#[test_case(MARIADB => inconclusive; "Maria DB")] Expected fail. Inconclusive seems not to work.
#[test_case(SQLITE_3; "SQLite 3")]
fn insert_truncated_value(profile: &Profile) {
let table_name = "InsertedTruncatedValue";
Expand Down Expand Up @@ -2330,7 +2330,7 @@ fn insert_truncated_value(profile: &Profile) {
}

#[test_case(MSSQL; "Microsoft SQL Server")]
#[test_case(MARIADB => inconclusive; "Maria DB expected fail inconclusive")]
// #[test_case(MARIADB => inconclusive; "Maria DB expected fail")] Expected failure.
#[test_case(SQLITE_3; "SQLite 3")]
fn insert_truncated_var_char_array(profile: &Profile) {
let table_name = "InsertedTruncatedVarCharArray";
Expand Down

0 comments on commit 962807b

Please sign in to comment.