Fix CI Test event Intermix test

Two or more events created can be logged at the same time stamp
and there is no code support that makes them sequential,they are
just files that can be opened and written in parallel.

This test was intended to create 3 events and delete one in middle and
verify if that still exist.

Resolves openbmc/openbmc-test-automation#120

Change-Id: I228043bcd50fb997c409890bcd4d21c691723f37
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/tests/test_eventlog.robot b/tests/test_eventlog.robot
index 1d5b28c..2e6d979 100644
--- a/tests/test_eventlog.robot
+++ b/tests/test_eventlog.robot
@@ -83,12 +83,11 @@
     should be equal as strings      ${resp.status_code}     ${HTTP_NOT_FOUND}
 
 Intermixed delete
-    [Documentation]     This testcase is for excersicing caching impleted,
+    [Documentation]     This testcase does the following sequence
     ...                 Steps:
     ...                     write three logs
     ...                     delete middle log
     ...                     middle log should not exist
-    ...                     time stamp should not match between logs(1st and 3rd)
     [Tags]  CI
     ${event1}=      create a test log
     ${event2}=      create a test log
@@ -96,9 +95,8 @@
     ${deluri} =  catenate    SEPARATOR=   ${event2}   /action/delete
     ${resp} =    openbmc post request     ${deluri}    data=${NIL}
     should be equal as strings      ${resp.status_code}     ${HTTP_OK}
-    ${time_event1}=     Read Attribute      ${event1}   time
-    ${time_event3}=     Read Attribute      ${event3}   time
-    should not be equal     ${time_event1}      ${time_event3}
+    ${resp}=   openbmc get request   ${event2}
+    should be equal as strings      ${resp.status_code}     ${HTTP_NOT_FOUND}
 
 restarting event process retains logs
     [Documentation]     This is to test events are in place even after the