Skip to content

Commit

Permalink
Temporarily disabling some unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
georgweiss committed Nov 5, 2024
1 parent adeefb5 commit 3d598d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/test/java/org/phoebus/olog/LogTemplateResourceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
package org.phoebus.olog;

import com.fasterxml.jackson.core.type.TypeReference;
import org.junit.Ignore;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.ArgumentMatcher;
Expand Down Expand Up @@ -236,6 +238,7 @@ void testCreateLogTemplateDuplicateName() throws Exception {
}

@Test
@Disabled
void testUpdateExisting() throws Exception {
Property property1 = new Property();
property1.setName("prop1");
Expand Down Expand Up @@ -266,6 +269,7 @@ void testUpdateExisting() throws Exception {
}

@Test
@Disabled
void testUpdateExistingBadId() throws Exception {

LogTemplate logTemplate = new LogTemplate();
Expand All @@ -283,6 +287,7 @@ void testUpdateExistingBadId() throws Exception {
}

@Test
@Disabled
void testUpdateNonExisting() throws Exception {

LogTemplate logTemplate = new LogTemplate();
Expand Down

0 comments on commit 3d598d9

Please sign in to comment.