Skip to content

Commit

Permalink
add support to schedule partitions that already exist in table
Browse files Browse the repository at this point in the history
  • Loading branch information
Harold Jimenez committed Jan 21, 2025
1 parent 49905d2 commit aab406a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2019-2021 Expedia, Inc.
* Copyright (C) 2019-2025 Expedia, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -102,15 +102,15 @@ public void testGetAllPathsWhenValidInput() throws Exception {
}

@Test
void testControllerWhenWrongUrl() throws Exception {
public void testControllerWhenWrongUrl() throws Exception {
mockMvc
.perform(get("/api/v1/database/some_database/table/some_table/metadataa"))
.andDo(MockMvcResultHandlers.print())
.andExpect(status().isNotFound());
}

@Test
void testPagingWhenValidInput() throws Exception {
public void testPagingWhenValidInput() throws Exception {
int pageNumber = 5;
int pageSize = 10;
HousekeepingMetadata metadata1 = generateDummyHousekeepingMetadata("some_database", "some_table");
Expand Down

0 comments on commit aab406a

Please sign in to comment.