Skip to content

Commit

Permalink
Fixed the test to match the actual behavior, not the user-wanted one.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitr committed Mar 6, 2015
1 parent 1ed0ee1 commit 252bc74
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions tests/bugs/core_2475.fbt
Expand Up @@ -25,15 +25,9 @@ ext_filename = '%sEXT1.TBL' % context[db_path_property]
c1 = db_conn.cursor()
c1.execute("insert into EXT1 (PK) values (1)")

# session B
con2 = kdb.connect(dsn=dsn,user=user_name,password=user_password)
c2 = con2.cursor()
c2.execute('select * from EXT1')
printData(c2)

db_conn.commit()

# check 2
# session B
con2 = kdb.connect(dsn=dsn,user=user_name,password=user_password)
c2 = con2.cursor()
c2.execute('select * from EXT1')
Expand All @@ -50,10 +44,8 @@ except:
'expected_stdout': """PK
-----------
1
PK
-----------
1
"""
}
]
}

0 comments on commit 252bc74

Please sign in to comment.