diff options
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | tests/attachment/fixtures/resync.xml | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 077742e799..5a4b2b4951 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,4 +39,4 @@ before_test: test_script: - cd c:\projects\phpbb - - php -e phpBB\vendor\phpunit\phpunit\phpunit --verbose + - php -e phpBB\vendor\phpunit\phpunit\phpunit --verbose --stop-on-error diff --git a/tests/attachment/fixtures/resync.xml b/tests/attachment/fixtures/resync.xml index 6e2cc62f68..af04701b4a 100644 --- a/tests/attachment/fixtures/resync.xml +++ b/tests/attachment/fixtures/resync.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <dataset> <table name="phpbb_attachments"> + <column>attach_id</column> <column>post_msg_id</column> <column>topic_id</column> <column>in_message</column> @@ -11,6 +12,7 @@ <row> <value>1</value> <value>1</value> + <value>1</value> <value>0</value> <value>0</value> <value>foo</value> @@ -18,6 +20,7 @@ <value>0</value> </row> <row> + <value>2</value> <value>1</value> <value>1</value> <value>1</value> @@ -27,6 +30,7 @@ <value>0</value> </row> <row> + <value>3</value> <value>1</value> <value>1</value> <value>1</value> @@ -37,13 +41,16 @@ </row> </table> <table name="phpbb_extensions"> + <column>extension_id</column> <column>extension</column> <column>group_id</column> <row> + <value>1</value> <value>jpg</value> <value>1</value> </row> <row> + <value>2</value> <value>png</value> <value>1</value> </row> |