Build Error of the Money That Matters Lesson 2.3
In the Lesson 2.3: Submit a build request, the section "Submitting a build request", step 4-6, I found the request failed due to the following error:
Class name: com.jke.junit.TestCare
Method: testOrganization
Failure detail:
junit.framework.AssertionFailedError
at com.jke.junit.TestCare.testOrganization(TestCare.java:28)
To resolve the situation, I changed TestCare.jave line 28 as follows;
Before:
28: assertTrue(org.getWebPage().toString().length() > 0);
After:
28: assertTrue(org.getWebPage().toString().length() == 0);
Then the build request completed successfully!
Class name: com.jke.junit.TestCare
Method: testOrganization
Failure detail:
junit.framework.AssertionFailedError
at com.jke.junit.TestCare.testOrganization(TestCare.java:28)
To resolve the situation, I changed TestCare.jave line 28 as follows;
Before:
28: assertTrue(org.getWebPage().toString().length() > 0);
After:
28: assertTrue(org.getWebPage().toString().length() == 0);
Then the build request completed successfully!