BAEL-17945 Fix the integrations tests in libraries (#7880)
-Fixing serenity tests failing due to mismatching libraries
This commit is contained in:
committed by
Josh Cummings
parent
eb6ced2100
commit
ceba5408ec
@@ -1,4 +1,4 @@
|
||||
package org.baeldung.hamcrest;
|
||||
package com.baeldung.hamcrest;
|
||||
|
||||
public class Animal {
|
||||
String name;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.baeldung.hamcrest;
|
||||
package com.baeldung.hamcrest;
|
||||
|
||||
public class Cat extends Animal {
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package org.baeldung.hamcrest;
|
||||
package com.baeldung.hamcrest;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import static org.baeldung.hamcrest.IsPositiveInteger.isAPositiveInteger;
|
||||
import static com.baeldung.hamcrest.IsPositiveInteger.isAPositiveInteger;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.*;
|
||||
import static org.hamcrest.beans.HasProperty.hasProperty;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.baeldung.hamcrest;
|
||||
package com.baeldung.hamcrest;
|
||||
|
||||
import org.hamcrest.Description;
|
||||
import org.hamcrest.Factory;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.baeldung.hamcrest;
|
||||
package com.baeldung.hamcrest;
|
||||
|
||||
public class Person {
|
||||
String name;
|
||||
|
||||
Reference in New Issue
Block a user