BAEL-17945 Fix the integrations tests in libraries (#7880)

-Fixing serenity tests failing due to mismatching libraries
This commit is contained in:
Dhawal Kapil
2019-09-27 20:16:06 +05:30
committed by Josh Cummings
parent eb6ced2100
commit ceba5408ec
6 changed files with 15 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
package org.baeldung.hamcrest;
package com.baeldung.hamcrest;
public class Animal {
String name;

View File

@@ -1,4 +1,4 @@
package org.baeldung.hamcrest;
package com.baeldung.hamcrest;
public class Cat extends Animal {

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package org.baeldung.hamcrest;
package com.baeldung.hamcrest;
import org.hamcrest.Description;
import org.hamcrest.Factory;

View File

@@ -1,4 +1,4 @@
package org.baeldung.hamcrest;
package com.baeldung.hamcrest;
public class Person {
String name;