Skip to content

Commit 6415d40

Browse files
committed
rename e2e_test to integration_tests
1 parent 2473c3d commit 6415d40

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
resolver = "2"
2020
members = [
2121
"crates/catalog/*",
22-
"crates/e2e_test",
22+
"crates/integration_tests",
2323
"crates/examples",
2424
"crates/iceberg",
2525
"crates/integrations/*",

crates/e2e_test/Cargo.toml renamed to crates/integration_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
[package]
19-
name = "iceberg-e2e-test"
19+
name = "iceberg-integration-tests"
2020
version = { workspace = true }
2121
edition = { workspace = true }
2222
homepage = { workspace = true }
File renamed without changes.

crates/e2e_test/tests/append_data_file_test.rs renamed to crates/integration_tests/tests/append_data_file_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use iceberg::writer::file_writer::location_generator::{
3131
use iceberg::writer::file_writer::ParquetWriterBuilder;
3232
use iceberg::writer::{IcebergWriter, IcebergWriterBuilder};
3333
use iceberg::{Catalog, Namespace, NamespaceIdent, TableCreation};
34-
use iceberg_e2e_test::set_test_fixture;
34+
use iceberg_integration_tests::set_test_fixture;
3535
use parquet::arrow::arrow_reader::ArrowReaderOptions;
3636
use parquet::file::properties::WriterProperties;
3737

crates/e2e_test/tests/conflict_commit_test.rs renamed to crates/integration_tests/tests/conflict_commit_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use iceberg::writer::file_writer::location_generator::{
3131
use iceberg::writer::file_writer::ParquetWriterBuilder;
3232
use iceberg::writer::{IcebergWriter, IcebergWriterBuilder};
3333
use iceberg::{Catalog, Namespace, NamespaceIdent, TableCreation};
34-
use iceberg_e2e_test::set_test_fixture;
34+
use iceberg_integration_tests::set_test_fixture;
3535
use parquet::file::properties::WriterProperties;
3636

3737
#[tokio::test]

0 commit comments

Comments
 (0)