forked from eclipse-repairnator/repairnator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: André Silva <[email protected]>
- Loading branch information
1 parent
1195a0a
commit 3fbacc5
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,7 @@ public void setUp() { | |
config.setPushRemoteRepo(""); | ||
config.setGithubUserEmail("[email protected]"); | ||
config.setGithubUserName("repairnator"); | ||
config.setJTravisEndpoint("https://api.travis-ci.com"); | ||
Utils.setLoggersLevel(Level.ERROR); | ||
|
||
serializerEngine = mock(SerializerEngine.class); | ||
|
@@ -88,8 +89,8 @@ public void tearDown() throws IOException { | |
|
||
@Test | ||
public void testFailingPassingProject() throws IOException, GitAPIException { | ||
long buildIdPassing = 203800961; | ||
long buildIdFailing = 203797975; | ||
long buildIdPassing = 226012005; // https://travis-ci.com/github/repairnator/TestingProject/builds/226012005 | ||
long buildIdFailing = 225936611; // https://travis-ci.com/github/repairnator/TestingProject/builds/225936611 | ||
|
||
tmpDir = Files.createTempDirectory("test_bears1").toFile(); | ||
|
||
|
@@ -142,8 +143,8 @@ public void testFailingPassingProject() throws IOException, GitAPIException { | |
|
||
@Test | ||
public void testPassingPassingProject() throws IOException, GitAPIException { | ||
long buildIdPassing = 201938881; | ||
long buildIdPreviousPassing = 201938325; | ||
long buildIdPassing = 226012099; // https://travis-ci.com/github/repairnator/TestingProject/builds/226012099 | ||
long buildIdPreviousPassing = 226012117; // https://travis-ci.com/github/repairnator/TestingProject/builds/226012117 | ||
|
||
tmpDir = Files.createTempDirectory("test_bears2").toFile(); | ||
|
||
|