Skip to content

Commit

Permalink
Move missing tests
Browse files Browse the repository at this point in the history
Signed-off-by: André Silva <[email protected]>
  • Loading branch information
andre15silva committed May 15, 2021
1 parent 1195a0a commit 3fbacc5
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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();

Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit 3fbacc5

Please sign in to comment.