Showing with 3 additions and 5 deletions.
  1. +0 −2 src/core/qgscoordinatereferencesystem.cpp
  2. +3 −3 tests/src/python/utilities.py
2 changes: 0 additions & 2 deletions src/core/qgscoordinatereferencesystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2052,8 +2052,6 @@ bool QgsCoordinateReferenceSystem::syncDatumTransform( const QString& dbPath )

insert += map[i].dst;
values += QString( "%%1" ).arg( i + 1 );

qWarning( "%d: src=%s dst=%s idx=%d", i, map[i].src, map[i].dst, map[i].idx );
}

insert = "INSERT INTO tbl_datum_transform(" + insert + ") VALUES (" + values + ")";
Expand Down
6 changes: 3 additions & 3 deletions tests/src/python/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,14 @@ def compareWkt(a, b, tol=0.000001):
r1 = re.compile( "\s*,\s*" )

# compare the structure
a0 = r1.sub( ",", r0.sub( "#", r ) )
a0 = r1.sub( ",", r0.sub( "#", a ) )
b0 = r1.sub( ",", r0.sub( "#", b ) )
if a0 != b0:
return False

# compare the numbers with given tolerance
a0 = r.findall( a )
b0 = r.findall( b )
a0 = r0.findall( a )
b0 = r0.findall( b )
if len(a0) != len(b0):
return False

Expand Down