diff --git a/AtlasTest/TestTools/TestTools/SGassert.h b/AtlasTest/TestTools/TestTools/SGassert.h
index 3ab5c54d1e0a48dfe6c4ef2892a619a34464e15d..5479045fe0b009fba44c3461687af5f09ef367a2 100755
--- a/AtlasTest/TestTools/TestTools/SGassert.h
+++ b/AtlasTest/TestTools/TestTools/SGassert.h
@@ -23,7 +23,7 @@
 #define SGASSERTERROR( FALSEEXPR )   \
     std::cerr << "Now we expect to see an error message:" << std::endl \
               << "----Error Message Starts--->>" << std::endl; \
-    assert(!FALSEEXPR); \
+    assert(!(FALSEEXPR));                                      \
     std::cerr<< "<<---Error Message Ends-------" << std::endl
 
 
diff --git a/AtlasTest/TestTools/share/post.sh b/AtlasTest/TestTools/share/post.sh
index c2d6d3eddc90d06fbcbf2cf6fc2932e170fed515..429a0d23b52ba714f36b7ac143dbc0f20c732ed8 100755
--- a/AtlasTest/TestTools/share/post.sh
+++ b/AtlasTest/TestTools/share/post.sh
@@ -27,6 +27,7 @@ fi
 read -d '' II <<EOF
 s/StoreGateSvc_Impl/StoreGateSvc/
 s/SGImplSvc/StoreGateSvc/
+s/SG::DataProxyHolder::sgkey_t/sgkey_t/
 EOF
 
 # ignore diff annotations
@@ -112,6 +113,8 @@ PP="$PP"'|PluginService::SetDebug|setting LC_ALL'
 PP="$PP"'|^Warning in .* (header|class) .* is already in'
 # Ignore GaudiHive timeline printouts
 PP="$PP"'|^TimelineSvc +INFO'
+# StoreGate v3 migration
+PP="$PP"'|VERBOSE ServiceLocatorHelper::service: found service IncidentSvc'
 
 
 if [ "$extrapatterns" != "" ]; then