My test does:
Opportunity opp2 = opps.get(1);
opp2.probability = 40;
upsert(opp2);
opp2.probability = 30;
upsert(opp2);
System.debug('****opp2History=' + opp2.OpportunityHistories);
I was expecting OpportunityHistories to have some values but it is blank, since I have changed the Opportunity.
Any tips?