Unskip newly working bats tests

This commit is contained in:
Zach Musgrave
2022-06-03 14:01:02 -07:00
parent a857658987
commit 9b1c5fd9ef
4 changed files with 4 additions and 8 deletions
+4 -1
View File
@@ -3,7 +3,6 @@ load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
setup_common
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
@@ -435,6 +434,8 @@ SQL
}
@test "auto_increment: dolt_merge() works with no auto increment overlap" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE t (
pk int PRIMARY KEY AUTO_INCREMENT,
@@ -499,6 +500,8 @@ SQL
}
@test "auto_increment: dolt_merge() with a gap in an auto increment key" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE t (
pk int PRIMARY KEY AUTO_INCREMENT,
-1
View File
@@ -11,7 +11,6 @@ teardown() {
}
@test "branch: deleting a branch deletes its working set" {
skip_nbf_dolt_1
dolt checkout -b to_delete
root=$(noms root .dolt/noms)
-5
View File
@@ -11,7 +11,6 @@ teardown() {
}
@test "column_tags: Renaming a column should preserve the tag number" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL,
@@ -60,7 +59,6 @@ SQL
@test "column_tags: Merging two branches that added same tag, name, type, and constraints" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL,
@@ -85,7 +83,6 @@ SQL
}
@test "column_tags: Merging branches that use the same tag referring to different schema fails" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL COMMENT 'tag:1234',
@@ -111,7 +108,6 @@ SQL
}
@test "column_tags: Merging branches that use the same tag referring to different column names fails" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL COMMENT 'tag:1234',
@@ -138,7 +134,6 @@ SQL
}
@test "column_tags: Merging branches that both created the same column succeeds" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL COMMENT 'tag:0',
@@ -3,7 +3,6 @@ load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
setup_common
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE parent (