// pause a couple seconds... [SCM-244]
Thread.sleep( 2000 );
//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() );
result = provider.changeLog( getScmRepository(), fileSet, (ScmVersion) null, null );
assertTrue( result.getProviderMessage(), result.isSuccess() );
assertEquals( 2, result.getChangeLog().getChangeSets().size() );