Skip to content

Commit

Permalink
test: revert ignored tests (#2455)
Browse files Browse the repository at this point in the history
  • Loading branch information
killme2008 authored Sep 21, 2023
1 parent df08771 commit 9863e50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tests-integration/src/opentsdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ mod tests {
test_exec(instance).await;
}

#[ignore = "https://github.com/GreptimeTeam/greptimedb/issues/1681"]
#[tokio::test(flavor = "multi_thread")]
async fn test_distributed_exec() {
let distributed = tests::create_distributed_instance("test_distributed_exec").await;
Expand Down
3 changes: 1 addition & 2 deletions tests-integration/src/tests/instance_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,6 @@ async fn test_create_table_after_rename_table(instance: Arc<dyn MockInstance>) {
check_output_stream(output, expect).await;
}

#[ignore = "https://github.com/GreptimeTeam/greptimedb/issues/1681"]
#[apply(both_instances_cases)]
async fn test_alter_table(instance: Arc<dyn MockInstance>) {
let instance = instance.frontend();
Expand All @@ -1271,7 +1270,7 @@ async fn test_alter_table(instance: Arc<dyn MockInstance>) {
"insert into demo(host, cpu, memory, ts) values ('host1', 1.1, 100, 1000)",
)
.await,
Output::AffectedRows(0)
Output::AffectedRows(1)
));

// Add column
Expand Down

0 comments on commit 9863e50

Please sign in to comment.