Skip to content

Commit aab406a

Browse files
author
Harold Jimenez
committed
add support to schedule partitions that already exist in table
1 parent 49905d2 commit aab406a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

beekeeper-api/src/test/java/com/expediagroup/beekeeper/api/controller/BeekeeperControllerTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (C) 2019-2021 Expedia, Inc.
2+
* Copyright (C) 2019-2025 Expedia, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -102,15 +102,15 @@ public void testGetAllPathsWhenValidInput() throws Exception {
102102
}
103103

104104
@Test
105-
void testControllerWhenWrongUrl() throws Exception {
105+
public void testControllerWhenWrongUrl() throws Exception {
106106
mockMvc
107107
.perform(get("/api/v1/database/some_database/table/some_table/metadataa"))
108108
.andDo(MockMvcResultHandlers.print())
109109
.andExpect(status().isNotFound());
110110
}
111111

112112
@Test
113-
void testPagingWhenValidInput() throws Exception {
113+
public void testPagingWhenValidInput() throws Exception {
114114
int pageNumber = 5;
115115
int pageSize = 10;
116116
HousekeepingMetadata metadata1 = generateDummyHousekeepingMetadata("some_database", "some_table");

0 commit comments

Comments
 (0)