//Make a change to the readme.txt and commit the change
ScmTestCase.makeFile( getWorkingCopy(), "/readme.txt", "changed readme.txt" );
CheckInScmResult checkInResult = provider.checkIn( getScmRepository(), fileSet, COMMIT_MSG );
assertTrue( "Unable to checkin changes to the repository", checkInResult.isSuccess() );
ChangeLogScmResult secondResult = provider.changeLog( getScmRepository(), fileSet, (ScmVersion) null, null );
assertTrue( secondResult.getProviderMessage(), secondResult.isSuccess() );
assertEquals( 2, secondResult.getChangeLog().getChangeSets().size() );
//Now only retrieve the changelog after timeBeforeSecondChangeLog
Date currentTime = new Date();