From 2e44b49a2db3026050b136de9b00f749dd3ff939 Mon Sep 17 00:00:00 2001
From: Pierre Schmitz <pierre@archlinux.de>
Date: Fri, 25 Apr 2014 06:26:49 +0200
Subject: Update to MediaWiki 1.22.6

---
 tests/phpunit/includes/media/FakeDimensionFile.php | 28 ----------------------
 1 file changed, 28 deletions(-)
 delete mode 100644 tests/phpunit/includes/media/FakeDimensionFile.php

(limited to 'tests/phpunit/includes/media/FakeDimensionFile.php')

diff --git a/tests/phpunit/includes/media/FakeDimensionFile.php b/tests/phpunit/includes/media/FakeDimensionFile.php
deleted file mode 100644
index 7926000b..00000000
--- a/tests/phpunit/includes/media/FakeDimensionFile.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-class FakeDimensionFile extends File {
-	public $mustRender = false;
-
-	public function __construct( $dimensions ) {
-		parent::__construct( Title::makeTitle( NS_FILE, 'Test' ),
-			new NullRepo( null ) );
-
-		$this->dimensions = $dimensions;
-	}
-
-	public function getWidth( $page = 1 ) {
-		return $this->dimensions[0];
-	}
-
-	public function getHeight( $page = 1 ) {
-		return $this->dimensions[1];
-	}
-
-	public function mustRender() {
-		return $this->mustRender;
-	}
-
-	public function getPath() {
-		return '';
-	}
-}
\ No newline at end of file
-- 
cgit v1.2.3-54-g00ecf